首页 > 其他分享 >进到页面后input输入框自动获取焦点

进到页面后input输入框自动获取焦点

时间:2023-03-11 19:34:04浏览次数:30  
标签:输入框 input 原文 版权 autofocus 页面

只要在该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

标签:输入框,input,原文,版权,autofocus,页面
From: https://www.cnblogs.com/LuoCore/p/17206762.html

相关文章