<html>
  <head>
    <script type="text/javascript" >
       function fn() {
       document.write("Hello there!!!");
       }
    </script>
  </head>
   <body>
      <button onclick="fn()">click</button>
   </body>
</html>
单击按钮后,FF 继续旋转(11.0),而好像我直接调用 fn() 而不将其连接到按钮,它工作正常。有人可以看看这个吗?