我试图在 HTML 中创建一个删除按钮来删除数组中的一个元素,但为什么它不起作用? https://github.com/Clifford026/TodoList
<script>
function rem(value){
todolist.splice(i,0);
}
</script>
.
.
.
<% for(var i=0; i <todolist.length; i++){ %>
<lt> <%= todolist[i].name %></lt>
<button onclick = "rem(i)">x</button><br>
<% } %>
萧十郎
莫回无
相关分类