在最新一集中的“剖析 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; }
希望您現在能夠更了解幕後發生的事情。請記住:任何時候您需要從數組中刪除項目,$.grep 都會很好地完成這個任務!
以上是簡單技巧:解析jQuery - Grep的詳細內容。更多資訊請關注PHP中文網其他相關文章!