我对IE8和replaceWith()
jQuery 的方法有疑问(实际上也有其他方法)。
我尝试用AJAX调用响应替换一个部分,但 IE 根本没有改变任何东西。该脚本适用于Firefox 22,但在IE8中没有任何移动。
我也尝试使用html()
方法,同样,它只在脚本中出现一次。
这里刷新功能代码
refresh= function(section, url_rel) {
var success=false;
$.ajax({
url : url_rel,
type : 'GET',
data : '',
dataType : 'html',
async: false,
cache: false,
success : function(code_html, statut){
if(code_html !='') {
var parent = section.parent();
section.replaceWith(code_html);
parent.find('.modify,.suppress').each(function() {
initContextMenu($(this));
});
updateHour();
success=true;
}
else {
alert('Une erreur est survenue...');
}
}
});
return success;
}
这个函数在网页上被调用了几次,但是失败了一次。。
提前致谢