在最新一集中的“剖析 jQuery”中,我们将揭开 $.grep 的面纱,并准确了解幕后发生的事情。
订阅我们的 YouTube 页面以观看所有视频教程!
grep 的 jQuery 源
// jQuery source for the grep method grep: function( elems, callback, inv ) { var ret = []; // Go through the array, only saving the items // that pass the validator function for ( var i = 0, length = elems.length; i < length; i++ ) { if ( !inv !== !callback( elems[ i ], i ) ) { ret.push( elems[ i ] ); } } return ret; }登录后复制
本文地址:http://yunji1.cn