gpt4 book ai didi

jQuery inArray 给出错误的结果

转载 作者:行者123 更新时间:2023-12-01 07:43:55 28 4
gpt4 key购买 nike

我正在尝试检查数组中是否存在“4”,因此我使用 inArray。尽管“4”确实存在,但它一直说“它不存在”。这是其中的一部分:

        var sp_20 = ["4"];

function checkPrice(){

if ( $.inArray("4", "sp_20") > -1 ) {
alert("It's there");
}
else {
alert("It's not there");
}

}

我从网站上的另一个答案借用了代码,但它在这里似乎不起作用!

最佳答案

您以错误的方式指定了数组 obj。尝试以下操作:

var sp_20 = ["4"];

function checkPrice(){

if ( $.inArray("4", sp_20) > -1 ) {
alert("It's there");
}
else {
alert("It's not there");
}

}

或者你可以简单地使用indexOf()函数,如

if(sp_20.indexOf("4") > -1) {
alert("It's there");
} else {
alert("It's not there");
}

使用变量:

var y = "5";
var sp_20 = ["1", y, "2"];

if (sp_20.indexOf(y) > -1) {
alert("It's there");
} else {
alert("It's NOT there");
}

关于jQuery inArray 给出错误的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42141594/

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