AS3在数组中搜索一个值并返回它的位置索引
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3在数组中搜索一个值并返回它的位置索引相关的知识,希望对你有一定的参考价值。
If the item cannot be found then the return value is NaN. This function only returns the index of the first occurence found, so it's not very good if you have multiple occurrences of the same value in the array.
function findIndexInArray(value:Object, arr:Array):Number { for (var i:uint=0; i < arr.length; i++) { if (arr[i]==value) { return i; } } return NaN; } var myArray:Array = new Array("a","b","c","d","e","f","g"); trace(findIndexInArray("c", myArray)); // OUTPUT // 2
以上是关于AS3在数组中搜索一个值并返回它的位置索引的主要内容,如果未能解决你的问题,请参考以下文章