JSLite - 過濾


如有疑問歡迎到這些地方交流,歡迎加入JSLite.io組織團體共同開發!

filter

篩選出與指定表達式相符的元素集合。
filter(selector)
filter(function(index){ ... }) 篩選出與 指定表達式相符的元素集合。

$("div").filter("#box") //⇒ self 在所有的div对象中选择器为 #box 的过滤出来。

$("#select option").filter(function(idx){
    console.log(this.selected)
    return this.selected
})
//上面这种方法跟 not(function(index){ ... })  是一样的

not

not(selector)   ⇒ collection
not(collection)   ⇒ collection
not(function(index){ ... }) ⇒ collection
篩選出與 指定表達式相符的元素集合。它的作用剛好與 filter 相反,回傳。

$("#select option").not(function(idx){
    console.log(this.selected)
    return this.selected
})
//⇒ [哈哈3]
$("input").not("#input") //⇒ 返回除去 匹配到的#input

$('input').not(function(){
    console.log(this.type)
    return this.type=="text"
})