最佳答案
如何使用 onclick 中的函数将列表元素添加到现有 ul 中?我需要把它添加到这个类型的名单..。
<ul id="list">
<li id="element1">One</li>
<li id="element2">Two</li>
<li id="element3">Three</li>
</ul>
... another list item with the id "element4" and text "Four" under that. I tried this function but it doesn't work...
function function1() {
var ul = document.getElementById("list");
var li = document.createElement("li");
li.appendChild(document.createTextNode("Element 4"));
}
我不知道 JQuery,所以只能用 Javascript。谢谢! !