gpt4 book ai didi

javascript splice() 导致 "arrayName.splice() is not a function"错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:28:51 25 4
gpt4 key购买 nike

我正在尝试从包含表单输入字段的数组中删除某些值:

allFields = theForm.getElementsByTagName("INPUT");

for(j = 0; j < allFields.length; j++) {
if(allFields[j].className == "btn" || allFields[j].className == "lnk") {
allFields.splice(j,1);
}
}

它会导致错误。 Firebug 显示以下错误并且脚本不起作用。

allFields.splice is not a function

这也发生在我尝试过的任何其他 Array 方法中。我该如何解决这个问题?

最佳答案

allFields 不是一个数组,而是一个NodeList

如果你想删除元素,做一个反向循环并使用removeChild:

var allFields = theForm.getElementsByTagName("input");
for(var j=allFields.length-1; j>=0; j--){
if(allFields[j].className == "btn" || allFields[j].className == "lnk"){
allFields[j].parentNode.removeChild(allFields[j]);
}
}

关于javascript splice() 导致 "arrayName.splice() is not a function"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3574776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com