This topic has been archived. It cannot be replied.
-
工作学习 / 专业技术讨论 / 请问javascript能否得到网页上一个元素的精确位置?离左边和上边的px数?
-helloyou(你好!QQ230);
2006-1-5
(#2699696@0)
-
up
-helloyou(你好!QQ230);
2006-1-5
(#2699890@0)
-
你可以在显示元素时就定义好它们的座标, 这是更容易的做法.
-sailor(正当梨花开遍了天涯);
2006-1-5
(#2699911@0)
-
显示的时候是用的表格(百分比),现在要在下面加个浮动菜单,窗口变动了就会有误差
-helloyou(你好!QQ230);
2006-1-5
(#2699915@0)
-
So the most east and straightforward thing is to change the definition of table. Use accurate size rather than percentage.
-sailor(正当梨花开遍了天涯);
2006-1-5
(#2700097@0)
-
但是这样那个页面的布局就要跟着变了
-helloyou(你好!QQ230);
2006-1-5
(#2700250@0)
-
用DIV, 把表格放到一个DIV中, 下面的MENU放到一个DIV中, 用相对位置.
-yimingma(ESTHER);
2006-1-5
(#2700665@0)
-
注意div在不同的browser可能有不同表现
-wudeba(特别晚熟);
2006-1-6
(#2700986@0)
-
可以。用DOM的ATTRIBUTES。抱歉现在没时间,不能给你具体的CODE。
-bdbs(不得不说);
2006-1-10
(#2710478@0)
-
程序见内。offsetX = 0;
offsetY = 0;
function getOffset(obj) {
while (obj.nodeName != "BODY") {
offsetX += obj.offsetLeft;
offsetY += obj.offsetTop;
obj = obj.offsetParent;
}
}
-bdbs(不得不说);
2006-1-10
{185}
(#2710512@0)
-
好,谢谢谢谢。
-helloyou(你好!QQ230);
2006-1-13
(#2717961@0)