本文主要給大家介紹了關(guān)于利用JavaScript查詢某個(gè)值是否數(shù)組內(nèi)的相關(guān)內(nèi)容,分享出來(lái)供大家參考學(xué)習(xí),下面話不多說(shuō)了,來(lái)一起看看詳細(xì)的介紹:
問(wèn)題
> var b = ["aa", "bb"] > "aa" in b
我要查詢字符串a(chǎn)a是否在數(shù)組里面,in可行么?
in
首選說(shuō)in操作符
用過(guò)python的都想是不是可以用in,可惜不能用,先看看python的效果:
>>> a = ["aa" , "bb"] >>> "aa" in a True >>>
但是JavaScript不一樣,in操作的對(duì)象要是一個(gè)對(duì)象,在MDN的官網(wǎng)有說(shuō):
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in
簡(jiǎn)言之就是:
1.數(shù)組得搜下標(biāo)
2.對(duì)象可以為key in obj這種,實(shí)例:
// Arraysvar trees = ['redwood', 'bay', 'cedar', 'oak', 'maple']; 0 in trees // returns true 3 in trees // returns true 6 in trees // returns false 'bay' in trees // returns false (you must specify the // index number, not the value at that index) 'length' in trees // returns true (length is an Array property) Symbol.iterator in trees // returns true (arrays are iterable, works only in ES2015+) // Predefined objects'PI' in Math // returns true // Custom objectsvar mycar = {make: 'Honda', model: 'Accord', year: 1998}; 'make' in mycar // returns true 'model' in mycar // returns true
indexOf
這是個(gè)好東西,可以直接使用,如果是前端使用要確保瀏覽器支持,nodejs支持沒(méi)有問(wèn)題的。
實(shí)例:
> var b = ["aa", "bb"] undefined > "aa" in b false > b.indexOf("aa") 0 > b.indexOf("aaa")
最簡(jiǎn)單粗暴的辦法
就是做一個(gè)for 循環(huán)這種,一個(gè)個(gè)比較吧
總結(jié)
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com