我从 ajax 请求返回了以下 html 数据
<div> Log information from the following sessions
<span class="comments"> your comments </span>
<div>
<div>Section B log information
<span class="comments"> section B comments </span>
</div>
这是我试图从这个返回 ajax 请求中删除所有评论类但没有工作并且评论没有被删除的尝试。
$.ajax{
url: pathToFile,
success: function(data)
{
var removeComments = $(data).remove(".comments");
alert(removeComments).html());
}
}