用javascript获取控件实际位置,点击控件紧邻显示浮动 DIV

 
 代码取自JS日历,提取出来方便使用。欢迎回贴提供改进、更通用的代码:
(注:粘贴即用,兼容 IE7,IE8,IE9的兼容模式,但不兼容IE9。如果想兼容,需在<head>添加<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />)

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2" %>

<!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 runat="server">
<title></title>
<style type="text/css">
.dv
{
width:200px;
height:100px;
background-color:Yellow;
border:1px black solid;
position:absolute;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>

<table style="width:100%;">
<tr>
<td>
<asp:Button ID="Button2" runat="server" Text="Button" OnClientClick="return show(this);"
/>
</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="return show(this);" />
</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
</table>
<div id="ddv" class="dv">

</div>
<script>

function show(obj) {
var ddv = document.getElementById("ddv");
var fixedX = -1; // x position (-1 if to appear below control)
var fixedY = -1; // x position (-1 if to appear below control)
var leftpos = 0;
var toppos = 0;
var aTag = obj;
do {
aTag = aTag.offsetParent;
leftpos += aTag.offsetLeft;
toppos += aTag.offsetTop;
} while (aTag.tagName != "BODY");
ddv.style.left = fixedX == -1 ? obj.offsetLeft + leftpos : fixedX;
ddv.style.top = (fixedY == -1 ? obj.offsetTop + toppos : fixedY)+20;
return false;
}

</script>
</div>
</form>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值