jQuery [attribute$=value] Seçici

❮ jQuery Seçiciler

Örnek

".org" ile biten bir href özniteliğine sahip tüm <a> öğelerini seçin:

$("a[href$='.org']")

Tanım ve Kullanım

[attribute$=value] seçicisi, belirli bir dizeyle biten bir değerle belirli bir özniteliğe sahip her öğeyi seçer.


Sözdizimi

$("[attribute$='value']")

Parameter Description
attribute Required. Specifies the attribute to find
value Required. Specifies the string the value should end with

❮ jQuery Seçiciler