日期:2014-05-18  浏览次数:20477 次

任何客户端事件都不能触发了,完蛋了
不知道怎么搞的我建的web程序都不能触发客户端事件了
<head   runat= "server ">
        <title> 无标题页 </title>
        <script   type= "text/javascript ">
          function   click()
          {
                window.alert( "kaka ");
          }
        </script>
</head>
<body>
        <form   id= "form1 "   runat= "server ">
        <div>
                <input   id= "Button1 "   type= "button "   value= "button "     onclick= "click() "   />
        </div>
        </form>
</body>
</html>
就这个都不能触发客户端事件,郁闷了

------解决方案--------------------
不要用click做函数名,换其他的