programing

탭 순서에서 html 요소를 명시 적으로 제외

yoursource 2021. 1. 17. 12:26
반응형

탭 순서에서 html 요소를 명시 적으로 제외


어쨌든 HTML 양식의 탭 순서에서 요소를 제외 할 수 있습니까?

그래서 다음이 있다면

<input type=text name=username>
<input type=text name=password>
<input type=button name=forgotpassword>
<input type=submit name=login>

tabindex를 1,2,3,4로 사용할 수 있다는 것을 알고 있지만 모든 필드에 번호를 매길 필요는 없습니다. 내 응용 프로그램은 동적으로 필드를 만듭니다.

감사

제이슨


설정 tabindex에이 -1 (즉, 단어의 경우) untabbable 요소를 렌더링합니다 :)

<input type="text" name="username" tabindex="-1" />

참조 URL : https://stackoverflow.com/questions/3895710/explicitly-exclude-an-html-element-from-the-tab-order

반응형