我在下面使用 jquery 1.8 在 IE 8 上收到错误“对象不支持属性或方法”
jQuery(".errorContents");
我在我的项目中使用 DWR 和 jQuery,还添加了 $.noConflict(); 但不断收到上述错误
function addError(){
var errorContents= jQuery(".errorContents");
errorContents.html('Errors in the Page');
errorContents.show();
}