精致的JS提示

他是一个用户自定义控件;

他只有1174个字节;

他能兼容任何浏览器;

他弹出来是如此的优雅,隐藏是那么自然;

他是如此的精致,绝对没有任何性能影响;

最重要的是他是陈太汉开发的;

 

文件名:TipControl.ascx

<%@ Control Language="C#"%>
<div id="divTip" style="width:300px;height:100px;position:absolute;top:240px;font-size:15px; border:#c60000 thin solid;display:none;" runat="server">
<div style=" background-color:#c60000; height:20px;">
<div style="margin-left:3px;color:White;font-weight:bold">温馨提示</div>
</div>
<div style="margin-top:23px;text-align:center;"><asp:Label ID="lbContent" runat="server"/></div>
</div>
<script language="javascript" type="text/javascript">
function ShowTip(tip) {
parent.document.documentElement.scrollTop
= parent.document.documentElement.scrollHeight;//滚动条置顶
document.getElementById("<%=divTip.ClientID%>").style.display = "block";
document.getElementById(
"<%=divTip.ClientID%>").style.left = (document.body.scrollWidth - 300) / 2 + "px";
document.getElementById(
"<%=divTip.ClientID%>").style.top = parent.document.documentElement.scrollHeight/2-100 + "px";
document.getElementById("<%=lbContent.ClientID%>").innerHTML = tip;
setTimeout(
"document.getElementById('<%=divTip.ClientID%>').style.display = 'none'", 3000);
}
</script>

测试页面

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestJS.aspx.cs" Inherits="JQueryTest.TestJS" %>
<%@ Register Src="~/UserControl/TipControl.ascx" TagName="uc" TagPrefix="ua" %>
<!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>
<script type="text/javascript" src="js/jquery.tools.min.js"></script>

</head>
<body>
<form id="form1" runat="server">
<div>
<ua:uc runat="server" ID="fdfdf" />
<input type="button" value="测试" onclick="ShowTip('陈太汉提示您,有消息');"
</div
>
</form>
</body>
</html>
posted @ 2011-04-28 17:54  啊汉  阅读(592)  评论(1编辑  收藏  举报