<select> autofocus屬性是布爾屬性,如果存在,它指定下拉列表應(yīng)在頁面加載時(shí)自動(dòng)獲得焦點(diǎn)。
具有自動(dòng)對(duì)焦的下拉列表:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML:<select> autofocus 屬性的使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <select autofocus> <option value="php">PHP</option> <option value="java">Java</option> <option value="rust">Rust</option> <option value="pythone">Python</option> </select> </body> </html>測(cè)試看看 ?/?
IEFirefoxOperaChromeSafari
Internet Explorer 10、Opera、Chrome 和 Safari 支持 autofocus 屬性。
注意:Firefox 或者 Internet Explorer 9 及更早版本不支持 <select> 標(biāo)簽的 autofocus 屬性。
autofocus 屬性是一個(gè)布爾屬性。
autofocus 屬性指定下拉列表在頁面加載時(shí)自動(dòng)獲得焦點(diǎn)。
autofocus 屬性是 HTML5 中 <select> 標(biāo)簽的新屬性。
在 XHTML 中,禁止屬性簡(jiǎn)寫,autofocus 屬性必須定義為 <select autofocus="autofocus">。
<select autofocus>HTML <select> 標(biāo)簽