如何检查目标变量是否在数组中?
这个问题在这里已经有了答案:
你可以使用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这个问题在这里已经有了答案:
你可以使用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