是否有可能获得ajax responseText而没有删除之前内容的响应?
例如:
<div id="content">
<p>Default content</p>
</div>
使用responseText运行正常的ajax请求,目标是id =&#34; content&#34;该文档的先前内容更改为:
<div id="content">
<p>ajax response</p>
</div>
是否可以同时保留&#34;默认内容&#34;和&#34; ajax响应&#34;在ajax请求之后的同一个div中?
答案 0 :(得分:1)
当然,只需append()
新的ajax内容,而非覆盖html()
/ text()
答案 1 :(得分:1)
如果没有看到您的代码,很难知道您在做什么,但我猜您正在使用.html()
来显示结果。请尝试使用.append()
。
答案 2 :(得分:1)
$("#content" ).append(myResponseText_Variable);