0

我在下面使用 jquery 1.8 在 IE 8 上收到错误“对象不支持属性或方法”

jQuery(".errorContents");

我在我的项目中使用 DWR 和 jQuery,还添加了 $.noConflict(); 但不断收到上述错误

function addError(){
       var errorContents= jQuery(".errorContents");
       errorContents.html('Errors in the Page');
       errorContents.show(); 
}
4

2 回答 2

0

这对我来说很好:

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<div class="errorContents">asdf</div>
<script type="text/javascript">
    function addError() {
        var errorContents = $(".errorContents");
        errorContents.html('Errors in the Page');
        errorContents.show();
    }
    addError();
</script>
</body>
</html>

小提琴:http: //jsfiddle.net/5wbb8/

于 2013-02-19T10:56:24.313 回答
0

这可能是因为多次加载相同的 jQuery 插件或加载了多个版本的 jQuery 插件。

于 2013-02-19T11:03:22.150 回答