createElement() 方法通过指定名称创建一个元素。
创建一个按钮:
var btn=document.createElement("BUTTON");
HTML元素经常包含文本。创建指定文本的按钮你需要在按钮元素后添加文本节点:
创建指定文本的按钮:
var btn=document.createElement("BUTTON");
var t=document.createTextNode("CLICK ME");
btn.appendChild(t);
appendChild() 方法向节点添加最后一个子节点。
提示:如果您需要创建包含文本的新段落,请记得添加到段落的文本的文本节点,然后向文档添加该段落。
您也可以使用 appendChild() 方法从一个元素向另一个元素中移动元素。
在列表中添加项目:
.<ul id="myList"><li>Coffee</li><li>Tea</li></ul>.
<p id="demo">请点击按钮向列表中添加项目。</p>
<button onclick="myFunction()">亲自试一试</button>
<script>
function myFunction()
{
var node=document.createElement("LI");
var textnode=document.createTextNode("Water");
node.appendChild(textnode);
document.getElementById("myList").appendChild(node);
}
</script>
从一个列表向另一个列表中移动列表项:
.<ul id="myList1"><li>Coffee</li><li>Tea</li></ul>.
<ul id="myList2"><li>Water</li><li>Milk</li></ul>
<p id="demo">请点击按钮把项目从一个列表移动到另一个列表中。</p>
<button onclick="myFunction()">亲自试一试</button>
<script>
function myFunction()
{
var node=document.getElementById("myList2").lastChild;
document.getElementById("myList1").appendChild(node);
}
</script>
版权属于:小小窝/禾下月
本文链接:https://hxyxyz.top/index.php/Web/155.html
本站文章采用 知识共享署名4.0 国际许可协议 进行许可,请在转载时注明出处及本声明!