简体   繁体   中英

Is there an property value named invisible?

Instead using of:

if ( ! $('#XX').is(':visible) )

Is there a value called invisible ? I tried that one , but doesn't work.

Thanks !

There is a .not() function , that does the opposite to .is() :

.not(':visible')

http://api.jquery.com/not/

':hidden'

if ($('#XX').is(':hidden))

See the jQuery doc for :hidden .

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