웹개발

특정 태그에 포커스 주기

미스터몽키 2017. 9. 22. 15:53

폼 로드시 특정 태그에 포커스 주기 main코드


1. html  autofocus 속성 사용


<form action="">

  First name: <input type="text" name="fname" autofocus><br>
  Last name: <input type="text" name="lname"><br>
  <input type="submit">
</form>


2. jQuery 사용

<form action="">

  First name: <input type="text"  id="txtTitle"><br>
  Last name: <input type="text" ><br>
  <input type="submit">
</form>

...

    $(function () {

         $('#txtTitle').focus();           // 폼로드시 id가 txtTitle에 포커스 주기 

    });