HTML DOM中的insertBefore()方法用于在用户指定的现有节点之前插入新节点。
用法:
node.insertBefore( newnode, existingnode )
参数:此方法接受上述和以下所述的两个参数:
- newnode:它是必需的参数。此参数包含需要插入的新节点对象。
- existingnode:它是必需的参数。它描述了新节点在该节点之前插入的位置。如果将其设置为null,则insertBefore方法将在末尾插入新节点。
返回值:它返回代表插入节点的节点对象。
例:在此示例中,在列表的第二个节点之前插入一个列表元素。
<!DOCTYPE html>
<html>
<head>
<title>
HTML | DOM insertBefore() Method
</title>
<!--Script to insert a new node before existing node-->
<script>
function myGeeks() {
var newItem = document.createElement("li");
var textnode = document.createTextNode("Java");
newItem.appendChild(textnode);
var list = document.getElementById("subjects");
list.insertBefore(newItem, list.childNodes[2]);
}
</script>
</head>
<body>
<h1>
Welcome To GeeksforGeeks
</h1>
<h2>
HTML DOM insertBefore() Method
</h2>
<ul id="subjects">
<li>C++</li>
<li>Python</li>
</ul>
<p>
Click on the button to insert an
element before Python
</p>
<button onclick="myGeeks()">
Insert Node
</button>
</body>
</html>
输出:
之前单击按钮:
单击按钮后:
支持的浏览器:下面列出了DOM insertBefore()方法支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- HTML DOM contains()用法及代码示例
- HTML DOM adoptNode()用法及代码示例
- HTML DOM querySelectorAll()用法及代码示例
- HTML DOM blur()用法及代码示例
- HTML DOM getAttributeNode()用法及代码示例
- HTML DOM getAttribute()用法及代码示例
- HTML DOM createTextNode()用法及代码示例
- HTML DOM requestFullscreen()用法及代码示例
- HTML DOM getElementsByClassName()用法及代码示例
- HTML DOM focus()用法及代码示例
- HTML DOM querySelector()用法及代码示例
- HTML DOM hasAttributes()用法及代码示例
- HTML DOM exitFullscreen()用法及代码示例
- HTML DOM isEqualNode()用法及代码示例
注:本文由纯净天空筛选整理自ProgrammerAnvesh大神的英文原创作品 HTML | DOM insertBefore() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。