下面是我的 JS 的片段
如果 PHP 要求,它会加载 JS 函数。但对于我的问题,这并不重要。
几乎在我的示例的底部,您会发现:loadjscssfile("js/functions/"+data.action+".js", "js");
它的作用是:假设data.action = 'helloworld'
它将加载文件:js/functions/helloworld.js 并且它将检查函数helloworld()
问题出在最后一部分,helloworld .js 被加载。但是当我这样做时:$.isFunction('helloworld')
它不起作用。
更新:jQuery 函数 AJAX 可以解决问题,下面还有解决方案
//
// LOAD JS OR CSS
//
var fileref;
function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
fileref=document.createElement('script');
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", filename);
}
else if (filetype=="css"){ //if filename is an external CSS file
fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", filename);
}
if (typeof fileref!="undefined"){
document.getElementsByTagName("head")[0].appendChild(fileref);
}
}
//
// SET INIT AJAX FUNCTION
//
function init(i){
$.ajax({
dataType: "json",
url: "ajax.php?i="+i
}).done(function( data ) {
if(data.menu!='N.U.'){
$('.menu').html(data.menu);
}
if(data.container!='N.U.'){
$('.container').html(data.container);
}
if(data.action!='N.U.'){
if(data.action_val!='N.U.'){
var funcCall = data.action + "('" + data.action_var + "');";
} else {
var funcCall = data.action + "();";
}
if($.isFunction(funcCall)){
eval(funcCall);
} else {
//
// function doesnt excist try to load function from dir
//
loadjscssfile("js/functions/"+data.action+".js", "js");
//
// try again
//
if($.isFunction(funcCall)){
eval(funcCall);
} else {
//alert('FATAL ERROR: JS function ('+data.action+') doesnt excist');
}
}
}
}).fail(function(){
alert( "error" );
});
}
解决方案:
//
// SET INIT AJAX FUNCTION
//
function init(i){
$.ajax({
dataType: "json",
url: "ajax.php?i="+i
}).done(function( data ) {
if(data.menu!='N.U.'){
$('.menu').html(data.menu);
}
if(data.container!='N.U.'){
$('.container').html(data.container);
}
if(data.action!='N.U.'){
if(data.action_val!='N.U.'){
var funcCall = data.action + "('" + data.action_var + "');";
} else {
var funcCall = data.action + "();";
}
if (typeof window[data.action] === "function") {
eval(funcCall);
} else {
//
// function doesnt excist try to load function from dir
//
$.ajax({
url: "js/functions/"+data.action+".js",
dataType: "script"
}).done(function(){
//
// try again
//
if (typeof window[data.action] === "function") {
eval(funcCall);
} else {
alert('FATAL ERROR: JS function ('+data.action+') doesnt excist');
}
});
}
}
}).fail(function(){
alert( "error" );
});
}