javascript拓展DOM操作 prependChild insertAfert
程序员文章站
2023-11-25 12:57:16
以下是自己写的一个拓展函数,虽然网上已经有了,仅当做自己练兵。。。 复制代码 代码如下: function prependchild(o,s){ if(s.haschild...
以下是自己写的一个拓展函数,虽然网上已经有了,仅当做自己练兵。。。
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);
}
}
复制代码 代码如下:
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);
}
}
上一篇: c# Base关键字的使用
下一篇: CDMA 猫用AT命令发中文短信(C#)