本文介绍了Ajax 替换而不是追加的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用了以下 jQuery example奇迹般有效.但是它附加了结果.我需要更改什么来替换结果而不是附加?
I used the following jQuery example which works like a charm. However it appends the results. What do I need to change to replace the results instead of appending?
推荐答案
你可以在追加之前清空元素
you could empty the element before you append
$("#results").empty().append(myHtml);
或者使用html
方法
$("#results").html(myHtml)
这篇关于Ajax 替换而不是追加的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!