JS技术

Javascript教程_如何取得style中top的值源码教程_Javascript教程

字号+ 作者:H5之家 来源:H5之家 2015-09-29 16:00 我要评论( )

Javascript教程_如何取得style中top的值源码教程,学习Javascript教程_如何取得style中top的值源码教程,Javascript教程_如何取得style中top的值源码教程,查看Java

Javascript教程_如何取得style中top的值源码教程

top=osmall.offsetTop

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
#big{ position:relative;width:500px; height:400px;border:1px solid #999999;}
#big #small{position:absolute;top:50px; left:80px; width:100px; height:100px; background:#ff0000;}
</style>
<script language="javascript">
function top(){
 osmall=document.getElementById("small");
 top=osmall.offsetTop;
 alert(top);
}
</script>
</head>
<body>
<div id="big" onmouseover="top()">
 <div id="small"></div>
</div>
</body>
</html>

 

2

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
#big{ position:relative;width:500px; height:400px;border:1px solid #999999;}
#big #small{position:absolute;top:50px; left:80px; width:100px; height:100px; background:#ff0000;}
</style>
<script language="javascript">
function top(){
 osmall=document.getElementById("small");
  if (osmall.currentStyle){top=osmall.currentStyle.top;}//*ie
       else if (window.getComputedStyle) { top=osmall.getComputedStyle.top;} //*ff
 alert(top);
}
</script>
</head>
<body>
<div id="big" onmouseover="top()">
 <div id="small"></div>
</div>
</body>
</html>

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评