jQuery ajax 调用中的 load() 函数不适用于脚本
jQuery load() function in ajax call doesn't work for scripts
我搜索了一下,几乎所有方法都是将脚本代码带到另一个页面并调用它们。但我不想那样做,我希望它动态重新加载。 AJAX代码中有什么方法可以写吗?
success: function(response) {
$("button[name=post]").attr('disabled',false);
$("button[name=post]").html('Post');
$("#alertpost").fadeIn().html(response);
$("#card_about").load(location.href + " #card_about>*","");
}
您可以像 this.Please 一样加载 div,注意 divid (" #card_about");
之前的 space
$("#card_about").load(" #card_about");
不需要location.href
等
我搜索了一下,几乎所有方法都是将脚本代码带到另一个页面并调用它们。但我不想那样做,我希望它动态重新加载。 AJAX代码中有什么方法可以写吗?
success: function(response) {
$("button[name=post]").attr('disabled',false);
$("button[name=post]").html('Post');
$("#alertpost").fadeIn().html(response);
$("#card_about").load(location.href + " #card_about>*","");
}
您可以像 this.Please 一样加载 div,注意 divid (" #card_about");
之前的 space$("#card_about").load(" #card_about");
不需要location.href
等