我的评论是动态加载的。当我发表评论时,insertAfter/ insertBefore
将不起作用。其余的事情都很好。注释是通过ajax post请求将数据库转到,控制台日志和警报显示结果,但只有InsertAfter没有响应,并且控制台日志中没有错误。
无效
newcomment.insertAfter(respond);
工作
$('#respond').append(newcomment);
现在我使用append
,但我很好奇。这是jQuery错误还是我做错了?
修改
我将其更改为newcomment.insertAfter('#respond');
,现在正在工作。