javascrit原生实现jquery的append()函数

/**
     * javascrit原生实现jquery的append()函数
     * @param parent
     * @param text
     */
    function append(parent, text) {
        if (typeof text === 'string') {
            var temp = document.createElement('div');
            temp.innerHTML = text;
            // 防止元素太多 进行提速
            var frag = document.createDocumentFragment();
            while (temp.firstChild) {
                frag.appendChild(temp.firstChild);
            }
            parent.appendChild(frag);
        }
        else {
            parent.appendChild(text);
        }
    }

// 用法
var html = buildMenu(menuList);
var menuUl = document.getElementById("ul");
var html = '<li>...</li>';
append(menuUl, html);
 

 

posted @ 2016-12-14 22:13  园芳宝贝  阅读(2785)  评论(0编辑  收藏  举报