老师我有问题!为什么会自动填上
来源:3-8 编程练习
步步啊
2020-08-05 11:01:02

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>表单新属性autofocus</title>
</head>
<body>
<!-- 此处写代码 -->
<form>
用户名:<input type="text" autocomplete="on" autofocus="autofocus" name="text"/>
<br/>
请输入密码:<input type="password" name="password" autocomplete="off"/>
<br/>
<input type="submit" value="注册" />
</form>
</body>
</html>
我在编程题里做的,点击提交就是这样自动填加上了我的慕课登录信息,是什么原因呢?
1回答
同学你好,因为电脑中,保存过之前的登录信息,所以在线编辑器,会直接获取之前的登录信息并填充。同学可以在本地测试一下,而且练习题中,也建议大家在本地测试:

祝学习愉快!
相似问题