<!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>
<title>无标题文档</title>
<script language="JavaScript1.2">
function Hidecontent(divid) {
divid.filters.revealTrans.apply();
divid.style.visibility = "hidden";
divid.filters.revealTrans.play();
}
</script>
</head><body>
<div id='READ' style='left:320px;top:260px;width:486;position:absolute;filter:revealTrans(transition=23,duration=0.5) blendTrans(duration=0.5);z-index:10;' class=article><table border='1' cellpadding='3' cellspacing='0' width='486' bgcolor=#F4F1D9 bordercolor='#FFFF00'><tr><td bgcolor='#FFFF00'><font style='text-decoration: none' color='#FF0000'>友情提示</font></td><td align='right' bgcolor='#FFFF00'><a href='javascript:void(Hidecontent(READ))'><font style='text-decoration:none;' title='点击关闭提醒'><b>关闭×</b></font></a></td></tr><tr><td height='100' valign='middle' align='center' colspan='2'>提示内容</td></tr></table></div><a href="??????">这里如何增加一个点击可以打开提示的链接</a>
</body>
</html>

解决方案 »

  1.   

    <!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>
    <title>无标题文档</title>
    <script language="JavaScript1.2">
    function Hidecontent(divid) {
    divid.filters.revealTrans.apply();
    divid.style.visibility = "hidden";
    divid.filters.revealTrans.play();
    }
    function Showcontent(divid) {
    divid.filters.revealTrans.apply();
    divid.style.visibility = "visible";
    divid.filters.revealTrans.play();
    }
    </script>
    </head><body>
    <div id='READ' style='left:320px;top:260px;width:486;position:absolute;filter:revealTrans(transition=23,duration=0.5) blendTrans(duration=0.5);z-index:10;' class=article><table  border='1' cellpadding='3' cellspacing='0' width='486' bgcolor=#F4F1D9  bordercolor='#FFFF00'><tr><td bgcolor='#FFFF00'><font style='text-decoration: none'  color='#FF0000'>友情提示</font></td><td align='right' bgcolor='#FFFF00'><a  href='javascript:void(Hidecontent(READ))'><font style='text-decoration:none;' title='点击关闭提醒'><b>关闭×</b></font></a></td></tr><tr><td height='100' valign='middle' align='center'  colspan='2'>提示内容</td></tr></table></div><a href="javascript:Showcontent(document.getElementById('READ'));void(0);">这里点击可以打开提示的链接</a>
    </body>
    </html>