本文介绍了JQuery的获取当前数组索引位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个数组和一个div:
I have an array and a div:
var urls = ["google", "yahoo", "facebook"];
<div class="yahoo"></div>
时有可能得到任何元素加载div的类的数组索引?
Is it possible to get the array index of whichever element is loaded as the div's class?
我曾尝试:
alert(urls.index());
和我的分页符。
推荐答案
您可以尝试 $。inArray
实用功能。
var urls = ["google", "yahoo", "facebook"];
var cls = $('div').attr('class');
var ind = $.inArray(cls, urls);
这篇关于JQuery的获取当前数组索引位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!