如何检查目标变量是否在数组中?

这个问题在这里已经有了答案:

  • 你如何检查一个变量是否是JavaScript中的数组? [复制] 24个答案

  • 你可以使用indexOf方法数组https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf

    if(doingGood.indexOf(target)!== -1){

    // 做一点事

    }

    链接地址: http://www.djcxy.com/p/19305.html

    上一篇: How to check if the target variable is in an array?

    下一篇: Type checking for array