下面JS代码有什么错误?为什么显示不了对话框?
//JavaScriptDocumentfunctiongetScriptDir(){vararr;if(document.scripts){arr=document.s...
// JavaScript Document
function getScriptDir(){
var arr;
if(document.scripts){
arr = document.scripts;
}
else{
arr = document.getElementsByTagName("script");
}
return arr[arr.length-1].src;
}
function loadScript(path,json){
var script = document.createElement("script");
if(typeof script == "undefined"){
return null;
}
path = path.substring(0,path.lastIndexOf("/"));
script.setAttribute('type','text/javascript');
script.setAttribute("src",path);
document.getElementsByTagName("head")[0].appendChild(script);
if(json.loadstart){
json.loadstart();
}
if(json.loadover){
script.onload=script.onreadystatechange=function(){
var state = script.readyState;
if(state=='loaded' || state=='complete'){
json.loadover();
}
}
}
}
loadScript(getScriptDir() + "/jquery.js",{
loadstart:function(){
return null;
},
loadover:function(){
$(document).ready(function(e) {
alert("Dom ready!");
});
}
}); 展开
function getScriptDir(){
var arr;
if(document.scripts){
arr = document.scripts;
}
else{
arr = document.getElementsByTagName("script");
}
return arr[arr.length-1].src;
}
function loadScript(path,json){
var script = document.createElement("script");
if(typeof script == "undefined"){
return null;
}
path = path.substring(0,path.lastIndexOf("/"));
script.setAttribute('type','text/javascript');
script.setAttribute("src",path);
document.getElementsByTagName("head")[0].appendChild(script);
if(json.loadstart){
json.loadstart();
}
if(json.loadover){
script.onload=script.onreadystatechange=function(){
var state = script.readyState;
if(state=='loaded' || state=='complete'){
json.loadover();
}
}
}
}
loadScript(getScriptDir() + "/jquery.js",{
loadstart:function(){
return null;
},
loadover:function(){
$(document).ready(function(e) {
alert("Dom ready!");
});
}
}); 展开
1个回答
展开全部
这个不打印 无非是2个地方的问题
1. script.setAttribute("src",path);
这个path 一定是要正确的
2.
script.onload=script.onreadystatechange=function(){
var state = script.readyState;
if(state=='loaded' || state=='complete'){
json.loadover();
}
}
script.readyState 这一句针对ie的;
state=='loaded' || state=='complete' 这一段我试过 在ie7 和ie8下 state=‘loading’ ,ie11直接是undefined,你可以打一下断点看看这个值等于什么
1. script.setAttribute("src",path);
这个path 一定是要正确的
2.
script.onload=script.onreadystatechange=function(){
var state = script.readyState;
if(state=='loaded' || state=='complete'){
json.loadover();
}
}
script.readyState 这一句针对ie的;
state=='loaded' || state=='complete' 这一段我试过 在ie7 和ie8下 state=‘loading’ ,ie11直接是undefined,你可以打一下断点看看这个值等于什么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询