程序主要意思是输入框输入水果名称,原来列表删除相应的节点,把这种水果添加到另一个列表中
写的程序可以实现,但是后台报错,1.html:61 Uncaught TypeError: Cannot read property 'cloneNode' of undefined
html。。。导致后面的输入框清空语句没法执行,求帮忙 新手
fruit
basket
JS
window.onload=function(){
window.onload=function(){
var arr=['mango','apple','grape','watermelon'];
var list="";
for(var k=0;k'+arr[k]+''
document.querySelector('.cls1').innerHTML=list;
}
var check=document.getElementById('check');
var list1 =document.querySelector('.cls1');
check.addEventListener("click",function(){
var content=document.getElementById('in').value;
var list2 =document.querySelector('.cls2');
var aLi=document.getElementsByTagName('li');
for(var i=0;i
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
原生js克隆节点是用
cloneNode不是clone,把循环内代码改成我这样能正常运行出不来效果的时候记得看控制台的报错。
ul未写结束标签。
遇见错误先查dom结构,再查js执行是否为预期。
而且clone()不引第三方库是不能用的吧。
至于你说的bug没观察到。