본문 바로가기

개발관련/웹개발

탭 순서 설정하기

<tr>
      <td><img src="./img/etc/id.gif" /></td>
      <td><input type="text"  name="user_id" value="" tabindex=1 /></td>
      <td rowspan="2"><a href="javascript:goLogin();" title="Login">
         <img src="./img/etc/btn_login.gif" hspace="5" border="0"  tabindex=3 />
         </a>
    </td>
</tr>
<tr>
    <td><img src="./img/etc/pw.gif" /></td>
    <td><input type="password" tabindex="2" name="user_pass" value="" tabindex=2/></td>
</tr>

자바스크립트도 아니고 태그라고  해야하나...흠...

tabindex = 1
tabindex = 2
tabindex = 3
tabindex = 4
tabindex = 5
 
이런식으로 태그에 옵션을 넣어주면 된다.
간단데스!!!