javascript 如何取ul的离左边的px
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/...
<!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>cs</title>
<style type="text/css">
*{ padding:0px; margin:0px;}
body,html{width:100%; height:590px; background:url(hd.jpg) no-repeat; background-position:center;}
.link{width:930px; height:25px; position:relative; top:45px; margin:auto;}
.link ul{height:25px; float:right;}
.link li{width:70px; height:25px; list-style:none; float:left; cursor:pointer;}
</style>
<script language="javascript" type="text/javascript">
function Mopen(id)
{
var Top = document.getElementById(id).style.left;
alert(Top);
}
</script>
</head>
<body>
<div class="link">
<ul><!--我要取这个ul标签离浏览器左边的像素有多少px-->
<li id="m1" onmouseover="Mopen('m1')" title="游戏充值"></li>
<li id="m2" title="官方首页"></li>
<li id="m3" title="游戏论坛"></li>
<li id="m4" style="width:96px;" title="分享到QQ空间或者微博"></li>
</ul>
</div><!--Link结束-->
</body>
</html> 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>cs</title>
<style type="text/css">
*{ padding:0px; margin:0px;}
body,html{width:100%; height:590px; background:url(hd.jpg) no-repeat; background-position:center;}
.link{width:930px; height:25px; position:relative; top:45px; margin:auto;}
.link ul{height:25px; float:right;}
.link li{width:70px; height:25px; list-style:none; float:left; cursor:pointer;}
</style>
<script language="javascript" type="text/javascript">
function Mopen(id)
{
var Top = document.getElementById(id).style.left;
alert(Top);
}
</script>
</head>
<body>
<div class="link">
<ul><!--我要取这个ul标签离浏览器左边的像素有多少px-->
<li id="m1" onmouseover="Mopen('m1')" title="游戏充值"></li>
<li id="m2" title="官方首页"></li>
<li id="m3" title="游戏论坛"></li>
<li id="m4" style="width:96px;" title="分享到QQ空间或者微博"></li>
</ul>
</div><!--Link结束-->
</body>
</html> 展开
1个回答
展开全部
用jquery吧
var marginLeft=$(id).css("margin-left"); 这样就可以获取了
var marginLeft=$(id).css("margin-left"); 这样就可以获取了
追问
我不太懂jquery 你发个完整版给我看一下 好吗?
追答
唔,这个应该学习一下,很好用。完整版?
ul{margin-left:300px;}
----html----
test1
test2
js代码(用的jquery)
var marginLeft=$("#list").css("margin-left");
这时候 marginLeft得到的值就是"300px"
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询