JSLite - 필터링


궁금하신 점이 있으시면 이런 곳에서 소통하셔도 좋고, 공동개발을 위해 JSLite.io 조직팀에 합류하셔도 좋습니다!

filter

지정된 표현식과 일치하는 요소 집합을 필터링합니다.
filter(selector)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
筛选出与 指定表达式匹配的元素集合。它的作用刚好与 filterfilter(function(index){ ... }) 지정된 와 일치하는 요소 집합을 필터링합니다. 표현 .

$("#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"
})
not🎜🎜🎜not(selector) ⇒ collection🎜not(collection) ⇒ collection🎜not(function(index){ ... }) ⇒ collection🎜 non 수식과 일치하는 요소 집합입니다. 그 기능은 반환하는 filter와 정반대입니다. 🎜🎜rreee🎜