English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
autofocus 속성은 불리언 속성입니다. 존재하면, 페이지가 로드될 때 버튼이 자동으로 포커스를 받도록 지정합니다.
autofocus 속성을 사용하는 버튼:
<!DOCTYPE html> <html> <head> <title>HTML:<button> autofocus 속성 - 기본 튜토리얼 웹 oldtoolbag.com</title> <body> <button type="button" autofocus onclick="alert('Hello world!')">Click Me!</button> </body> </html>테스트해 보기 ‹/›
IEFirefoxOperaChromeSafari
Internet Explorer 10, Firefox, Chrome, 및 Safari는 autofocus 속성을 지원합니다.
주의: Internet Explorer 9 또한 이전 IE 버전은 autofocus 속성을 지원하지 않습니다.
autofocus 속성은 boolean(부울) 속성입니다.
autofocus 속성은 페이지가 로드될 때 버튼이 자동으로 포커스를 받도록 정의합니다.
autofocus 속성은 HTML5中新<button> 태그의 새로운 속성
XHTML에서는 속성 축약이 허용되지 않으며, autofocus 속성은 <button autofocus="autofocus">로 정의되어야 합니다.
<button type="button" autofocus>