0

我有这个代码,

    $(".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 之外的所有其他浏览器中使用。

4

2 回答 2

0

你试过这样吗:

$("#large_buttons").show().load(site_url + "my_profile #large_buttons > *");

虽然我无法看到 site_url 变量在哪里,但如果这是一种类型,那么你应该使用它

$("#large_buttons").show().load(loadUrl + "my_profile #large_buttons > *");
于 2012-11-08T10:37:45.580 回答
0

检查以确保您正在“加载”的页面 (my_profile) 是有效的 HTML(没有放错位置的结束标签、未闭合的标签等)。我在使用 IE8 时遇到了这样的问题,因为我尝试加载的标记无效。大多数浏览器都设法解释了错误的标记,但 IE8 失败了。

HTML验证器可能会对您有所帮助。

于 2012-11-08T01:34:47.870 回答