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

HTML로 텍스트 입력에서 ENTER를 누른 후 어떻게 실행합니까?


이를 달성하려면 jQuery와 함께 HTML을 사용하고 Enter 키를 누른 후 실행 -

예시

<!DOCTYPE html>
<html>
   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
            $('input').bind("enterKey",function(e){
               alert("Enter key pressed");
            });
            $('input').keyup(function(e){
               if(e.keyCode == 13)
               {
                  $(this).trigger("enterKey");
               }
            });
         });
      </script>
   </head>
 
   <body>
      <input type = "text">
      <p>Press Enter key in the above input text.</p>
   </body>
</html>