DOM节点对象之创建和插入节点示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DOM节点对象之创建和插入节点示例相关的知识,希望对你有一定的参考价值。
示例:创建和插入节点。
1、新建节点:createElement("节点名")
2、新建文本节点:createTextNode("文本内容")
3、将文本节点添加到新建节点中:appendChild(文本节点名)
4、获取要插入节点的对象:getElementById("id名")
5、将新建节点插入到目标节点对象中:insertChild(要插入节点名,目标节点位置)
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
function insertNode(){
var elementnode = document.createElement("li");
//var elementnode.setAttribute("id","text");
var context = document.createTextNode("新建文本内容节点");
elementnode.appendChild(context);
var list = document.getElementById("list")
list.insertBefore(elementnode,list.childNodes[2]);
}
</script>
</head>
<body>
<!-- <button onClick="insertNode()">insert</button>-->
<input type="button" value="insert" onClick="insertNode()">
<ol id="list">
<li>原列表一</li>
<li>原列表二</li>
</ol>
</body>
</html>
以上是关于DOM节点对象之创建和插入节点示例的主要内容,如果未能解决你的问题,请参考以下文章