在数组中查找字符串作为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)
// NEEDS MOOTOOLS 1.2 FRAMEWORK Array.prototype.find = function(searchStr) { var returnArray = []; this.each(function(objeto,index){ if (objeto.contains(searchStr)) { returnArray.push(objeto); alert('hay uno'); } }); return returnArray; }
以上是关于在数组中查找字符串作为mootools中的值的主要内容,如果未能解决你的问题,请参考以下文章
使用 grep 或类似工具查找对 Dojo 和 Mootools 的调用
如果字符串数组中的列名在字符串数组中具有匹配的值,则获取DataRow