隐藏html ajax响应中的特定div

时间:2017-02-12 14:25:43

标签: javascript jquery html ajax

我没有尝试过ajax。

我有这个html ajax响应,我想在ajax成功之后隐藏第一个div'loading'

回应:

<div id="loading">
  <label>..</label>
  <div>...</div>
</div>
<div id="list">
...
...
</div>

我尝试了很多东西:

success: function (response) {
  response.find('#loading').html().hide();
  response.filter('#loading').hide();
  response.find('#loading').hide();
}

但这不起作用。

4 个答案:

答案 0 :(得分:0)

通过ID:

直接隐藏对象
$('#loading').hide()

答案 1 :(得分:0)

的CSS:

B

JS:

<T>

答案 2 :(得分:0)

&#13;
&#13;
.hidden { display: none; }
&#13;
&#13;
&#13;

答案 3 :(得分:0)

您必须在DOM中添加您的回复:

$(body).html(response);

然后你可以隐藏你的div:

$("#loading").hide();