我无法让 jQuery 向我从 $.post 返回的结果的 dom 添加一个类。
为什么这不起作用?
$.post(url, data, function (result) {
$(result).addClass('.update');
$this.closest('.inline').replaceWith(result);
});
替换工作正常,但它没有 .update 类。
我无法让 jQuery 向我从 $.post 返回的结果的 dom 添加一个类。
为什么这不起作用?
$.post(url, data, function (result) {
$(result).addClass('.update');
$this.closest('.inline').replaceWith(result);
});
替换工作正常,但它没有 .update 类。