<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>js</title><script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script><script type="text/javascript">$(document).ready(function () {$(window).scroll(function () {var a = document.getElementById("eq").offsetTop;if (a >= $(window).scrollTop() && a < ($(window).scrollTop()+$(window).height())) {alert("div在可视范围");}});});</script></head><body><div style="width:1px;height:2000px;"></div><div id="eq" style=" width:100px; height:100px; background-color:Red;">1</div><div style="width:1px;height:2000px;"></div></body></html>
以上代码是小编给大家介绍的使用jQuery判断Div是否在可视区域的方法,希望对大家有所帮助。接下来一段代码给大家介绍jquery如何判断div是否隐藏,具体代码如下所示:
<!DOCTYPEhtml PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">jquery 如何判断div是否隐藏|jquery判断div是否隐藏<htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8" /><title>绑定函数</title><scriptsrc="jquery-1.3.2.js"></script><script>$(document).ready(function(){vartemp=$("#test").is(":hidden");//是否隐藏vartemp1=$("#test").is(":visible");//是否可见alert(temp) ;alert(temp1) ;});</script></head><body><ponclick='test()'>刷新测试</p><divid="test" style="display:none"></div></body></html>
新闻热点
疑难解答