如何点击 JavaScript 函数来调用它?


要在 JavaScript 中单击时调用函数,请使用 onclick。尝试运行以下代码以在 JavaScript 中单击时调用 onclick 函数 −

示例

<html>
   <head>
      <script>
         function sayHello() {
            document.write ("Hello there!");
         }
      </script>
   </head>
   <body>
      <p>Click the following button to call the function</p>

      <form>
         <input type = "button" onclick = "sayHello()" value = "Say Hello">
      </form>

      <p>Use different text in write method and then try...</p>
   </body>
</html>

更新于:2020-06-19

1 千次观看

开启你的 职业生涯

完成课程获得认证

开始
广告