Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

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>