如何动态加载一个JS文件后,能马上运行其中的函数?
2个回答
展开全部
js中是有立即执行函数的,比如说js文件中有一个函数为:
function
sayHello(){
console.log('Hello
World!');
}
如果你想在js文件加载后,立即执行sayHello()函数,那么可以在js中加入
sayHello();的调用即可。
function
sayHello(){
console.log('Hello
World!');
}
如果你想在js文件加载后,立即执行sayHello()函数,那么可以在js中加入
sayHello();的调用即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-13
展开全部
function JError(){
this.code =null;
this.reason =null;
}
function JObject(){
var self = this;
var errInfo = new Array();
this.createXMLHttp=function(){
try{
return (new ActiveXObject("MSXML2.XMLHTTP"));
}catch(e){
return (new XMLHttpRequest());
}
};
this.createHTMLObj = function(pTag){
try{
return document.createElement(pTag.toUpperCase());
}catch(e){
var tErr = new JError();
tErr.code = null;
tErr.reason = "创建HTML标签时,发生错误";
errInfo.push(tErr);
}
};
this.include=function(pJSFile){
var tXMLHttp = this.createXMLHttp();
tXMLHttp.open("GET",pJSFile,false);
tXMLHttp.send(null);
var tJsCode = tXMLHttp.responseText;
window.eval(tJsCode,"javascript");
if (window.execScript){
window.execScript(tJsCode);//ie
}else{
window.eval(tJsCode); //firefox
}
};
};
this.code =null;
this.reason =null;
}
function JObject(){
var self = this;
var errInfo = new Array();
this.createXMLHttp=function(){
try{
return (new ActiveXObject("MSXML2.XMLHTTP"));
}catch(e){
return (new XMLHttpRequest());
}
};
this.createHTMLObj = function(pTag){
try{
return document.createElement(pTag.toUpperCase());
}catch(e){
var tErr = new JError();
tErr.code = null;
tErr.reason = "创建HTML标签时,发生错误";
errInfo.push(tErr);
}
};
this.include=function(pJSFile){
var tXMLHttp = this.createXMLHttp();
tXMLHttp.open("GET",pJSFile,false);
tXMLHttp.send(null);
var tJsCode = tXMLHttp.responseText;
window.eval(tJsCode,"javascript");
if (window.execScript){
window.execScript(tJsCode);//ie
}else{
window.eval(tJsCode); //firefox
}
};
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询