为什么用户名处没有自动完成功能呢
来源:3-8 编程练习
小蜗牛linner
2018-05-08 11:11:37
<html> <head> <meta charset="utf-8"> <title>表单新属性autofocus</title> </head> <body> <!-- 此处写代码 --> <form autocomplete="on" action=" "> 用户名:<input type="text" name="text" autofocus="autofocus"><br/> 请输入密码:<input type="password" name="pass" autocomplete="off"><br/> <input type="button" value="注册"/> </form> </body> </html>
1回答
好帮手慕星星
2018-05-08
经测试你这个input按钮没有提交的功能,所以没有生效,改为:
这两种都是可以的。自己测试下,祝学习愉快~~
相似问题