如何在 onclick 事件中呼叫多個 JavaScript 函式?


要透過單擊事件來呼叫多項 JavaScript 函式,請使用分號,如下所示:

onclick="Display1();Display2()"

示例

即時演示

<html>
   <head>
      <script>
         function Display1() {
            document.write ("Hello there!");
         }
         function Display2() {
            document.write ("Hello World!");
         }
      </script>
   </head>
   <body>
      <p>Click the following button to call the function</p>
      <form>
         <input type = "button" onclick = "Display1(); Display2()" value = "Result">
      </form>
   </body>
</html>

更新於: 2020 年 6 月 12 日

1 千多次瀏覽

開啟您的 職業生涯

完成課程,獲取認證

開始
廣告