我尝试创建一个从数组创建无序列表的 DOM 函数。例如,如果您将数组 ["hello", "food", "sun"] 传递给它,它将创建无序列表:<ul><li>hello</li><li>food</li><li>sun</li></ul>然而,它什么也没创造。这是我的 DOM 函数的代码:<script>function create_list(array,id){var ul= document.createElement("ul")ul.setAttribute("id",id)//sets the id of the ul tag to the id specified as argument.for (var i=0 ; i<array.length ; i++){ul.appendChild.document.createElement("li").textContent= array[i]//creates list elements inside of the ul tag.}document.body.appendChild(ul)//adds the ul tag to the body of the html document.}//call the functioncreate_list(["hello","13","Kitchen"],13)</script>为什么它不工作,我怎样才能让它工作?
1 回答

函数式编程
TA贡献1807条经验 获得超9个赞
您应该分开创建孩子和附加孩子的逻辑。
你的错误来自ul.appendChild.document.createElement..
我认为最好像下面这样使用=)
function create_list(array, id) {
var ul = document.createElement("ul")
ul.setAttribute("id", id)
//sets the id of the ul tag to the id specified as argument.
for (var i = 0; i < array.length; i++) {
var li = document.createElement("li");
li.textContent = array[i]
ul.appendChild(li);
//creates list elements inside of the ul tag.
}
document.body.appendChild(ul)
//adds the ul tag to the body of the html document.
}
//call the function
create_list(["hello", "13", "Kitchen"], 13)
添加回答
举报
0/150
提交
取消