jQuery :not()ตัวเลือก

❮ ตัวเลือก jQuery

ตัวอย่าง

เลือกองค์ประกอบ <p> ทั้งหมดยกเว้นองค์ประกอบที่มี class="intro":

$("p:not(.intro)")

ความหมายและการใช้งาน

ตัวเลือก :not() จะเลือกองค์ประกอบทั้งหมดยกเว้นองค์ประกอบที่ระบุ

ส่วนใหญ่จะใช้ร่วมกับตัวเลือกอื่นเพื่อเลือกทุกอย่าง ยกเว้นองค์ประกอบที่ระบุในกลุ่ม (เช่นในตัวอย่างด้านบน)


ไวยากรณ์

$(":not(selector)")

Parameter Description
selector Required. Specifies the element to not select.
This parameter accepts any kind of selector

❮ ตัวเลือก jQuery