日期:2014-05-18 浏览次数:20471 次
<!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>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="button" value="show panel" onclick="showPanel(event)" />
<asp:Panel ID="Panel1" runat="server" BorderColor="#FFE0C0" BorderStyle="Dotted"
Height="50px" Width="125px" style="visibility:hidden;position:absolute">
panel here</asp:Panel>
</div>
</form>
<script type="text/javascript">
var isIe=navigator.appName.indexOf("Microsoft")!=-1?true:false;
function showPanel(e){
var oDiv=document.getElementById("<%=Panel1.ClientID %>");
oDiv.style.top=isIe?event.clientY+"px":e.pageY+"px";
var iLeft=isIe?event.clientX:e.pageX;
iLeft+=12;
oDiv.style.left=iLeft+"px";
oDiv.style.visibility="visible";
}
</script>
</body>
</html>