老师检查下我作业,谢谢
来源:3-4 编程练习
慕函数3468989
2018-10-19 10:46:12
<html>
<head>
<meta charset="utf-8">
<title>表单新属性</title>
</head>
<body>
<form>
用户名:<!-- 补充代码 -->
<input type='text' autocomplete='on'>
<br><br>
邮箱:<!-- 补充代码 -->
<input type='text' autocomplete='off'>
<br><br>
手机号码:<!-- 补充代码 -->
<input type='text' autocomplete='off'>
<br><br>
<input type="submit">
</form>
</body>
</html>
1回答
经在Chrome浏览器上测试,需要在input标签中添加name属性才能完成自动填写哦,可以试一下。
祝学习愉快!
相似问题