Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để gọi nhiều hàm JavaScript trong sự kiện onclick?


Để gọi nhiều hàm JavaScript trong sự kiện nhấp chuột, hãy sử dụng dấu chấm phẩy như được hiển thị bên dưới -

onclick="Display1();Display2()"

Ví dụ

Bản trình diễn trực tiếp

<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>