62,268
社区成员
发帖
与我相关
我的任务
分享
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Untitled Page</title>
</head>
<body >
<form runat ="server" id="form1">
<div id="div1">aaaaaaa</div>
</form>
</body>
<script language ="javascript" >
function a()
{
var div1=document.getElementById('div1');
div1.style.visibility='hidden'
}
document.onmousedown=a;
</script>
</html>
<html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>Untitled Page</title> </head> <body > <form runat ="server" id="form1"> <div id="div1">aaaaaaa</div> </form> </body> <script language ="javascript" > function a() { var div1=document.getElementById('div1'); div1.style.display='none' } document.onmousedown=a; </script> </html>