如何测试jQuery隐藏的内容?
可能重复:
测试某些东西是否隐藏在jQuery中
在jQuery中,假设你有某种形式的,你隐藏和显示的元素,使用.hide()
.show()
或.toggle()
您如何测试以查看该元素当前是隐藏在屏幕上还是可见?
尝试
$("some-selector").is(':hidden');
要么
$("some-selector").is(':visible');
以下是:visible
和:hidden
选择器的文档。
$('.target').is(':hidden') // returns true if the element is hidden
$('.target').is(':visible') // returns true if the element is visible
链接地址: http://www.djcxy.com/p/2387.html