JSLite - Penapisan
Jika anda mempunyai sebarang pertanyaan, anda dialu-alukan untuk berkomunikasi di tempat-tempat ini, dan anda dialu-alukan untuk menyertai pasukan organisasi JSLite.io untuk pembangunan bersama!
tapis
Tapis set elemen yang sepadan dengan ungkapan yang ditentukan.
penapis(pemilih) 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
penapis(fungsi(indeks){ ... }) Menapis set elemen yang sepadan dengan bukan yang ditentukan ungkapan .
$("#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" })
filter
, kembali. 🎜🎜rrreee🎜