以下は私が作成した拡張機能です。すでにオンラインで公開されていますが、私自身のトレーニングにのみ使用されます。 。 。
function prependChild(o,s){
if (s.hasChildNodes()){
s.insertBefore(o,s.firstChild);
}else{
s.appendChild(o);
}
関数 insertAfert(o,s){
if(s.nextSibling!=null){
s.parentNode.insertBefore(o,s.nextSibling);
s. parentNode.appendChild (o);
}
}