我一直在与一个只有 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、Google Chrome 或 Firefox 中,我没有收到这些错误消息。
iframe 中包含 jquery 似乎是罪魁祸首。