jQuery “not readonly” selector

2019-01-17 18:59发布

问题:

I'm looking for something along the lines of...

$(':input:not(readonly)') // all inputs which are not readonly

but struggling to find the syntax.

Any pointers? thanks

回答1:

This should work:

$(":input:not([readonly])")


回答2:

$('input:not([readonly])')

would cover readonly, readonly="true" and readonly="readonly"



回答3:

I suppose you are looking for something like the following:

$('input:not([readonly="readonly"])')

Have a look at jQuery's various attribute-selectors.



回答4:

I recently did something similar like this:

$('#element').find(':input').not(':input[readonly]');


回答5:

I would like to add another answer that works for me, using context https://api.jquery.com/context/

$(this).context.readOnly == false / true