2012-10-05 23 views

cevap

37

İşte

$("some-selector").is(':visible'); 

$("some-selector").is(':hidden'); 

veya

deneyin :visible için dokümanlar ve :hidden seçiciler.

8
$('.target').is(':hidden') // returns true if the element is hidden 
$('.target').is(':visible') // returns true if the element is visible 
İlgili konular