论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Javascript教程
Tag:验证,特效,入门,实例,验证,表单,特效,正则表达式,跑马灯,document,函数,代码,getElementByID,菜单,图片,视频教程

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

文章类别:Javascript | 发表日期:2010-4-29 8:44:30

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

top=osmall.offsetTop

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<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>

视频教程列表
文章教程搜索
 
Javascript推荐教程
Javascript热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058