我在IE 8上使用jquery 1.8获取错误“对象不支持属性或方法”
的jQuery( “errorContents。”);
我在项目中使用DWR和jQuery,还添加了$ .noConflict();但继续得到上述错误
function addError(){
var errorContents= jQuery(".errorContents");
errorContents.html('Errors in the Page');
errorContents.show();
}
答案 0 :(得分: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>
答案 1 :(得分:0)
这可能是因为多次加载相同的jQuery插件或加载多个版本的jQuery插件。