在Jquery中有什么样的原型?

前端之家收集整理的这篇文章主要介绍了在Jquery中有什么样的原型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们在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)
原文链接:https://www.f2er.com/jquery/180159.html

猜你在找的jQuery相关文章