我们在Prototype中有一个名为.any的函数.我想要像
Jquery一样.
我的原型代码是:
if (item_name == '' || $R(1,ind).any(function(i){return($F("bill_details_"+i+"_narration") == item_name)})) { alert("This item already added."); }
我想使用Jquery执行等效函数.
请帮我实现所需的输出.提前致谢..
解决方法
对于IE 9,它内置:
The some() method tests whether some element in the array passes the test implemented by the provided function.
https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/some
[2,4,6,8,10].some(function(n) { return n > 5; }); // -> true (the iterator will return true on 6)
对于IE 8及以下版本:
原型any
[2,10].any(function(n) { return n > 5; }); // -> true (the iterator will return true on 6)
你可以使用jQuery.grep:
jQuery.grep([2,10],function(n) { return n > 5; }).length > 0; // -> true (as grep returns [6,10])
下划线_.any或_.some
_.any([2,function(n) { return n > 5; }); // -> true (the iterator will return true on 6)