页面加载时如何在文本框中放置光标(自动聚焦)?(HTML)
使用 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>
广告