在容器最前面添加DOM元素 parent.insertBefore(new, parent.children[0])
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在容器最前面添加DOM元素 parent.insertBefore(new, parent.children[0])相关的知识,希望对你有一定的参考价值。
//判断容器当前有没有子级元素,如果没有直接appendChild就行了; if (p.children[0]) { p.insertBefore(span, p.children[0]); } else { p.appendChild(span); }
以上是关于在容器最前面添加DOM元素 parent.insertBefore(new, parent.children[0])的主要内容,如果未能解决你的问题,请参考以下文章
c# 数组 插入元素在数组的最前面 数组中原来的值依次向后排列