也就是in_array函数,判断数组中是否含有某个元素。
Array.prototype.in_array = function(e) {
for(i=0;i<this.length;i++)
{
if(this[i] == e)
return true;
}
return false;
}
使用方法:
原文链接:https://www.f2er.com/angularjs/146423.htmltmp.in_array(id)