我没有尝试过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();
}
但这不起作用。
答案 0 :(得分:0)
通过ID:
直接隐藏对象$('#loading').hide()
答案 1 :(得分:0)
的CSS:
B
JS:
<T>
答案 2 :(得分:0)
.hidden { display: none; }
&#13;
答案 3 :(得分:0)
您必须在DOM中添加您的回复:
$(body).html(response);
然后你可以隐藏你的div:
$("#loading").hide();