码迷,mamicode.com
首页 > Web开发 > 详细

js中的in_array

时间:2015-06-09 16:20:00      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

Array.prototype.S = String.fromCharCode(2);
Array.prototype.in_array = function (e) {
  var r = new RegExp(this.S + e + this.S);
  return (r.test(this.S + this.join(this.S) + this.S));
};

var ary = new Array(1,2,‘aaa‘,‘bbbb‘,5);
alert(ary.in_array(3)); //false

alert(ary.in_array(2)); //true

js中的in_array

标签:

原文地址:http://www.cnblogs.com/YTzZ/p/4563443.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!