码迷,mamicode.com
首页 > Web开发 > 详细

JS 在元素后面添加新的元素

时间:2017-10-27 13:19:54      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:insert   last   pen   gen   fun   element   元素   function   var   

js中没有insertAfter元素,只有insertBefore函数:

    function insertAfter(newElement, targentElement) {
        var parent = targentElement.parentNode;
        if (parent.lastChild == targentElement) {
            parent.appendChild(newElement);
        } else {
            parent.insertBefore(newElement, targentElement.nextSibling)
        }
    }

完!

JS 在元素后面添加新的元素

标签:insert   last   pen   gen   fun   element   元素   function   var   

原文地址:http://www.cnblogs.com/wwz-wwz/p/7742350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!