如何在 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 千多次浏览

开启您的 职业生涯

完成课程,获取认证

开始
广告
© . All rights reserved.