假设我有以下 DIV
<div id="myDiv" style="display:none" title=""></div>
我有一个 ajax 调用,将 HTML 标记附加到这个 div 使用
$("#myDiv").html('').html(response);
我想在响应内容之前将隐藏内容附加到主 div 所以结果是
<div id="myDiv" style="display:none" title="">
//my hidden content
//here there will be the response HTML markup
</div>
我如何使用 jQuery 代码来做到这一点?