jquery 判断元素是否存在于数组中
Posted Mr_伍先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 判断元素是否存在于数组中相关的知识,希望对你有一定的参考价值。
要判断数组中是否包含某个元素,从原理来来说,就是遍历整个数组,然后判断是否相等
可以使用Jquery提供的方法:
$.inArray("元素(字符串)",数组名称) 进行判断 ,当存在该元素(字符串)时,返回该元素在数组的下标,不存在时返回 -1
$(function () { var array = ["asp.net", "asp.net mvc", "html5", "css3", "jquery", "javascript"]; var index = $.inArray("asp.net mvc", array); //结果:index=1 if (index >= 0) { console.log("数组array包含asp.net mvc下标为:" + index); } else { console.log("数组array 不包含asp.net mvc下标为:" + index); } });
以上是关于jquery 判断元素是否存在于数组中的主要内容,如果未能解决你的问题,请参考以下文章