在数组中查找字符串作为mootools中的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在数组中查找字符串作为mootools中的值相关的知识,希望对你有一定的参考价值。

You can find a string as an array row value.
Ex:
arr=['abcde','mdleo']
arr.find('dbd') -> array['abcde']
arr.find('akdowewo') -> array[] (empty)
  1. // NEEDS MOOTOOLS 1.2 FRAMEWORK
  2.  
  3. Array.prototype.find = function(searchStr) {
  4. var returnArray = [];
  5. this.each(function(objeto,index){
  6. if (objeto.contains(searchStr)) {
  7. returnArray.push(objeto);
  8. alert('hay uno');
  9. }
  10. });
  11. return returnArray;
  12. }

以上是关于在数组中查找字符串作为mootools中的值的主要内容,如果未能解决你的问题,请参考以下文章

使用 grep 或类似工具查找对 Dojo 和 Mootools 的调用

PHP怎么搜索数组的键并查找到对应的值?

如果字符串数组中的列名在字符串数组中具有匹配的值,则获取DataRow

使用数组 VBA 查找和替换数据库中的值

Mootools:为啥 PHP 中的每个 flush() 都没有反映在 mootools 事件中的用户端

表数组中的 VLOOKUP 键是一个公式