如何判断一个Div是否可视区域,判断div是否可见

 我来答
小鞠灬在读
2016-02-02 · 超过70用户采纳过TA的回答
知道小有建树答主
回答量:178
采纳率:0%
帮助的人:98.5万
展开全部

<!doctype html>

<html>

<head>

<script>

function show(){

var oDiv=document.getElementsByTagName("div")[0]

alert(oDiv.style.display); //none为不可见  block为可见

}

</script>


</head>


<body>

<div style="display:block"></div>

<button onclick="show()">查看</button>

</body>


</html>

佳乐阁
2016-02-04 · 超过14用户采纳过TA的回答
知道答主
回答量:60
采纳率:0%
帮助的人:31.6万
展开全部
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

<!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>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式