如何在页面加载 HTML 时将光标(自动对焦)放置在文本框中?
htmljavascriptprogramming scripts
使用 autofocus 属性在页面加载时将光标放置在文本框中。autofocus 属性是一个布尔属性。当存在时,它指定 <input> 元素应在页面加载时自动获得焦点。以下是一个例子 −
示例
<!DOCTYPE html> <html> <body> <form action = "/new.php"> Name: <input type = "text" name = "name" autofocus><br> Subject: <input type = "text" name = "sub"><br> <input type = "submit"> </form> </body> </html>