简体   繁体   中英

jQuery get/select element by property value

Is there a way to get/select an element by it's property value, just as it is possible with the attribute values:

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

For example, I'd set a property using jQuery like this:

$('#foo').prop('my-property', 'value');

and then I'd like to find an element which has property 'my-property' and it has value 'value' .

No, there isn't anything exposed at the selector level that can select by property value, just (as you know) attribute value.

Some properties are reflections of attributes, which means that setting the property sets the attribute, which allows you to use attribute selectors. For instance, an input element's defaultValue property is a reflection of its value attribute (which its value property is not).

Otherwise, you select by what you can and use filter to filter the resulting list to only the elements you actually want.

Re your edit:

For example, I'd set a property using jQuery like this:

 $('#foo').prop('my-property', 'value'); 

No, there's no way to select by that property directly, you'd need something like my filter suggestion above:

var list = $("something-that-gets-you-close").filter(function() {
    return this["my-property"] == "value";
});

You might consider using data-* attributes instead:

$("#foo").attr("data-my-property", "value");

then

var list = $("[data-my-property='value']");

to select it (the inner quotes are optional for values matching the definition of a CSS identifier ). Note that attribute values are always strings.

Beware: There's a persistent misconception that jQuery's data function is a simple accessor for data-* attributes. It is not. It manages a data cache associated with the element by jQuery, which is initialized from data-* attributes but disconnected from them. In particular, .data("my-property", "value") would not let you find that later via a [data-my-property=value] selector.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM