Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Jquery 中有一个选择列表框,我正在做类似的事情:
$("#Deg").append(degtems);
当我多次调用上述代码时,它一直在附加。我如何截断然后追加。
感谢
先打电话.empty():
.empty()
$("#Deg").empty().append(degtems);
..或者你可以简单地使用.html()@KevinB在下面指出的:
.html()
$("#Deg").html(degtems);
尝试使用 .html:
它本质上只是这样做:
首先使用.emptyselect 元素上的方法删除所有子元素:
.empty
$("#Deg").empty() .... $("#Deg").append(degtems);