我有这段代码,
$(".delete").live("click", function () {
alert("!");
var self = $(this);
var loadUrl = $(this).attr('href');
var interestParents = self.parents('div:eq(4)').attr("id");
$.ajax({
type: "POST",
url: loadUrl,
data: "isAjax=1"
}).done(function (msg) {
self.parent().parent().parent().parent().parent().fadeOut('fast', function () {
$(this).remove();
});
//console.log($("#"+interestParents).load(site_url+"my_profile/interests " + "#" + interestParents).fadeIn('fast'));
//$("#UL_" + msg + "items").load(site_url + "my_profile/interests " + "#UL_" + msg + "items").fadeIn('fast');
$("#large_buttons").load(site_url + "my_profile #large_buttons > *").show();
});
return false;
});
我不能终身解决为什么.load
没有将数据加载到large_buttons div中,它肯定存在于页面上,并且它可以在除IE8之外的所有其他浏览器中工作。
答案 0 :(得分:0)
检查以确保您“加载”(my_profile)的页面是有效的HTML(没有错放的结束标记,未关闭的标记等)。我有一个像IE8这样的问题,因为我试图加载的标记无效。大多数浏览器设法解释坏标记,但IE8失败。
HTML validator可能会对您有所帮助。
答案 1 :(得分:0)
$("#large_buttons").show().load(site_url + "my_profile #large_buttons > *");
虽然我无法看到site_url变量在哪里,如果这是一个类型,那么你应该使用这个
$("#large_buttons").show().load(loadUrl + "my_profile #large_buttons > *");