name里的autocomplete on是不是可以省略 因为默认即为on
来源:3-4 编程练习
Miki未希
2020-06-03 10:31:00
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表单新属性</title> </head> <body> <form> 用户名:<input type="text" name="name" autocomplete="on"><!-- 补充代码 --> <br><br> 邮箱:<input type="email" name="email" autocomplete="off"><!-- 补充代码 --> <br><br> 手机号码:<input type="tel" name="tel" autocomplete="off"><!-- 补充代码 --> <br><br> <input type="submit"> </form> </body> </html>
1回答
好帮手慕码
2020-06-03
同学你好,效果正确。另,是的,默认值为on,可以不写。
祝学习愉快~
相似问题