将 .insertAfter 与 ajax 调用的响应一起使用
Use .insertAfter with the response from an ajax call
我有基本的dom
<div class="outer">
<div class="inner"></div>
</div>
还有一个 ajax 电话
$.ajax({
...
...
success: function(html) {
//insert 'html' after '.inner'
}
我不能在这里使用附加,因为在'inner'之后会有项目,所以我需要在'inner'之后插入'html'但是我不确定如何使用'html' 此处为 'inserAfter'。
尝试以下操作:
$(".inner").after(html);
请注意,如果您在多个位置有 class,它会在每个位置添加 html。
我有基本的dom
<div class="outer">
<div class="inner"></div>
</div>
还有一个 ajax 电话
$.ajax({
...
...
success: function(html) {
//insert 'html' after '.inner'
}
我不能在这里使用附加,因为在'inner'之后会有项目,所以我需要在'inner'之后插入'html'但是我不确定如何使用'html' 此处为 'inserAfter'。
尝试以下操作:
$(".inner").after(html);
请注意,如果您在多个位置有 class,它会在每个位置添加 html。