我正在使用 jquery 加载功能来加载页面。它在 FF 中工作正常,但在 IE 中显示如下错误消息
Message: Object required
Line: 24
Char: 1
Code: 0
URI: http://sample/index.php?option=com_propertylist&controller=propertylist&view=propertylist&propty=220
Message: Permission denied
Line: 6081
Char: 6
Code: 0
URI: http://sample/templates/sample/js/jquery-1.6.2.min.js
代码是
jQuery("#listing a").bind('click', function(){
jQuery(".dashboard-listing").empty();
overlayapply();
jQuery(".dashboard-listing").load('index.php?option=com_propertylist&controller=listing&task=overview&propty='+propertyid+'&tmpl=component',null,function(){overlayremove();});
});
有任何想法吗?