<script> $(function(){ var $li1 = $("<li>php中文网</li>"); var $li2 = $("<li>php.cn</li>"); $("ul").append($li1); $("ul").append($li2); }) </script>
数据分析师2017-09-30 22:52:21
With the same append method and different content, will the front cover the back? -PHP Chinese website Q&A-Will the front of the same append method and different content cover the back? -PHP Chinese website Q&A
Please watch and learn.
迷茫2016-12-17 17:34:51
如果这个元素内没有其他的元素,append会插入到第一个,再插入的就分别是第二个,第三个,第四个,第n个,一往上加,如果有元素,它就会添加到这个元素的后面,然后一直往上加,你说的覆盖是不可能的。