相同的append方法不同内容前面会覆盖后面吗?
check
check 2016-12-17 17:33:23
0
2
1124
<script>
        $(function(){
            var $li1 = $("<li>php中文网</li>");
            var $li2 = $("<li>php.cn</li>");
            $("ul").append($li1); 
            $("ul").append($li2);
        })
    </script>


check
check

reply all(2)
数据分析师

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.

迷茫


如果这个元素内没有其他的元素,append会插入到第一个,再插入的就分别是第二个,第三个,第四个,第n个,一往上加,如果有元素,它就会添加到这个元素的后面,然后一直往上加,你说的覆盖是不可能的。


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!