2012-06-14 47 views

回答

8

使用Array.indexOf()這樣的:

if (myArray.indexOf(item) != -1) trace("item exists"); 
else trace("nope! can't find it") 

的indexOf返回索引;如果該項目不存在,或-1,如果它沒有。

-1
if(myArray.indexOf("<searchObject>") < 0) //Code here (returns -1 if the value isn't found) 
{ 
    //the value isn't found 
} else 
{ 
    //the value is found 
} 
+2

這非常奇怪。你問了這個問題。 RIAstar回答了它。那麼你認爲對他的回答做出不必要的改變是適當的,並且自己回答這個問題而不是接受他的回答?! –