autofocus属性是布尔属性。如果存在,它指定按钮在页面加载时应自动获得焦点。
使用 autofocus 属性的按钮:
<!DOCTYPE html> <html> <head> <title>HTML:<button> autofocus 属性 - 编程教程网(123520.net)</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>