我要做一个关闭按钮,但是不知道为什么不起作用???谁能帮我一下,非常简单,~~~~!!!!

#sideBar{
   width:400px;
   height:300px;
   position: fixed;
   right: 0px;
   bottom: 0px;
   border: 1px solid red;
}
   </style>
   <script type="text/javascript">
       window.onLoad = function()
       {
           var TipBox = document.getElementById("sideBar");
           var CloseBtn = document.getElementById("CloseBtn");
           CloseBtn.onClick =function(){TipBox.style.display="none";}
       }

   </script>
</head>
<body>


<div id="sideBar">
   <div class="pic">
       <div class="whatNm"><a href="" id="CloseBtn">a</a></div>
   </div>
</div>

Zhenlei
浏览 1476回答 3
3回答

Zhenlei

第一个:a href=""不能为空,必须是a href="#"第二个:他getElementById是sidebar;

Zhenlei

谢谢了 
打开App,查看更多内容
随时随地看视频慕课网APP