我一直在与一个错误进行斗争,我只能用IE9获得。根据jQuery和jQuery-UI的版本,错误消息会有所不同。使用jquery 1.8.3和jquery-ui 1.8.24,我会收到以下错误消息:
SCRIPT5009:'数组'未定义
但是,使用jquery 1.7.x和jquery-ui 1.7.x,我会收到以下错误消息:
SCRIPT5009:'对象'未定义
以下是违规页面的代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.8.24/jquery-ui.min.js"></script>
<title></title>
<script type="text/javascript">
$(document).ready(function() {
$("#dialog").dialog();
});
</script>
</head>
<body>
<div id="dialog">
<iframe id="iframe1" src="jqtest2.htm"></iframe>
</div>
</body>
</html>
以下是该页面中iframe的代码:
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script>
</head>
<body>
</body>
</html>
我没有在IE 9中使用兼容性视图模式,谷歌浏览器或Firefox中收到这些错误消息。
iframe中的jquery包含似乎是罪魁祸首。
答案 0 :(得分:5)
以下是我解决问题的方法。我将iframe src属性留空了,只有在调用dialog()之后才使用jquery初始化它。我想,这种方式IE稍后加载iframe内容,在这种情况下,问题不会出现。以下是修改后的代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.8.24/jquery-ui.min.js"></script>
<title></title>
<script type="text/javascript">
$(document).ready(function() {
$("#dialog").dialog();
$("#iframe1").attr("src", "jqtest2.htm");
});
</script>
</head>
<body>
<div id="dialog">
<iframe id="iframe1" src=""></iframe>
</div>
</body>
</html>
iframe html文件保持不变。
答案 1 :(得分:0)
function waitForjQuery(){
if(typeof jQuery!='undefined'){
//Do yor stuff!
}
else{
setTimeout(function(){
waitForjQuery();
},500);
}
}
waitForjQuery();