码迷,mamicode.com
首页 > 其他好文 > 详细

将新元素插入到目标元素之后

时间:2017-02-13 16:56:46      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:element   rtb   stc   node   app   logs   get   for   代码   

insertAfter函数代码

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

  

将新元素插入到目标元素之后

标签:element   rtb   stc   node   app   logs   get   for   代码   

原文地址:http://www.cnblogs.com/luren-hua/p/6394454.html

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