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

js 实现insertAfter

时间:2015-06-07 20:16:48      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:

 

function insertAfter(ele,html){
    var new_ele = document.createElement("div");
    new_ele.innerHTML = html;
    var parent = ele.parentNode || document.body;
    parent.insertBefore(new_ele.firstChild, ele.nextSibling);
}

var d = document.getElementById("test");
insertAfter(d,"<div>dddddddd</div>")

 

var d = document.getElementById("test");
d.childNodes;//...
d.previousSibling;//null
d.nextSibling;//null
d.parentNode;//body
d.firstChild;//a
d.lastChild;//b
d.lastChild.textContent;//b
d.lastChild.previousSibling.innerHTML;//Item4

 

js 实现insertAfter

标签:

原文地址:http://www.cnblogs.com/eturn/p/4558925.html

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