gpt4 book ai didi

javascript - 如何从列表中获取字符串的索引?

转载 作者:行者123 更新时间:2023-11-28 21:17:49 25 4
gpt4 key购买 nike

我有一个类似的列表

_Value1 = "'apple','ball','cat'....so on";

如果我知道苹果存在于上面的列表中。如何从列表中获取整个字符串的索引。就像苹果应该有索引1,球应该有2等等。

这个东西的 javascript 代码是什么?

最佳答案

var _Value1 = "'apple','ball','cat'";

// split the string on ","
var values = _Value1.split(",");

// call the indexOf method
var index = values.indexOf("'apple'");
<小时/>

工作示例:http://jsfiddle.net/Yt5fp/

<小时/>

您还可以检查它是否是较旧的浏览器,并添加 indexOf 方法(如果不存在)

if (!Array.prototype.indexOf)
{
Array.prototype.indexOf = function(elt /*, from*/) {
var len = this.length;
var from = Number(arguments[1]) || 0;
from = (from < 0) ? Math.ceil(from) : Math.floor(from);
if (from < 0) from += len;
for (; from < len; from++) {
if (from in this && this[from] === elt) return from;
}
return -1;
};
}

关于javascript - 如何从列表中获取字符串的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7190452/

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