当前位置:Gxlcms > JavaScript > javascript拓展DOM操作 prependChild insertAfert

javascript拓展DOM操作 prependChild insertAfert

时间:2021-07-01 10:21:17 帮助过:5人阅读

以下是自己写的一个拓展函数,虽然网上已经有了,仅当做自己练兵。。。
代码如下:

function prependChild(o,s){
if(s.hasChildNodes()){
s.insertBefore(o,s.firstChild);
}else{
s.appendChild(o);
}
}
function insertAfert(o,s){
if(s.nextSibling!=null){
s.parentNode.insertBefore(o,s.nextSibling);
}else{
s.parentNode.appendChild(o);
}
}

人气教程排行