进到页面后input输入框自动获取焦点
只要在该input标签后添加autofocus="autofocus"即可
代码实例:
<html>
<head></head>
<body>
用户名:<input type="text" id="username" name="username" autofocus="autofocus"/><br/>
密码:<input type="text" id="password" name="password"/><br/>
<input type="submit" name="submitBtn" value="提交"/>
</body>
</html>
————————————————
版权声明:本文为CSDN博主「罗小树」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/u010999809/article/details/75387718