当前位置:Gxlcms > JavaScript > jQuery数组中是否存在指定值

jQuery数组中是否存在指定值

时间:2021-07-01 10:21:17 帮助过:5人阅读

这次给大家带来jQuery数组中是否存在指定值,判断jQuery数组中是否存在指定值的注意事项有哪些,下面就是实战案例,一起来看一下。

<!DOCTYPE>
<html>
<head>
<title>jquery判断值是否存在于数组中</title>
<meta charset="utf-8">
</head>
<body>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
//参数第一个为数组,第二个为需要判断是否存在于数组中的值
function isInArray(arr,val){
  var str = ","+arr.join(",")+",";
  if(str.indexOf(","+val+",") != "-1"){
    //该数存在于数组中
    arr.splice($.inArray(val,arr),1);  //把该数从数组中删除
    console.log(arr);
  }else{
    //该数不存在于数组中
    console.log("不存在");
  }
}
var arr = [1,28,60,80,6];
isInArray(arr,28);//存在,删除元素28
isInArray(arr,18);//不存在,提示“不存在”
</script>
</body>
</html>

运行结果:

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读

js中el表达式怎样做出非空判断

分享页面后跳转回首页

以上就是jQuery数组中是否存在指定值的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行