jQuery [แอตทริบิวต์$=ค่า] Selector
ตัวอย่าง
เลือกองค์ประกอบ <a> ทั้งหมดที่มีแอตทริบิวต์ href ที่ลงท้ายด้วย ".org":
$("a[href$='.org']")
ความหมายและการใช้งาน
ตัวเลือก [attribute$=value] จะเลือกแต่ละองค์ประกอบที่มีแอตทริบิวต์เฉพาะ โดยมีค่าลงท้ายด้วยสตริงเฉพาะ
ไวยากรณ์
$("[attribute$='value']")
Parameter | Description |
---|---|
attribute | Required. Specifies the attribute to find |
value | Required. Specifies the string the value should end with |