我有以下HTML5代码
<!DOCTYPE html>
<html>
<head>
<title>Learning Input</title>
</head>
<body>
<input type=text value="Enter your name" maxlength="10"> <br>
<input type=checkbox checked>
</body>
</html>
顺便说一下,哪个工作正常。选中预期的复选框。但是,在添加一行代码以引入密码字段之后,以下代码使复选框未选中,即使很难,我也将其标记为“已选中”。这没有任何意义!我打破任何HTML5规则吗?
添加密码字段后的代码:
<!DOCTYPE html>
<html>
<head>
<title>Learning Input</title>
</head>
<body>
<input type=text value="Enter your name" maxlength="10"> <br>
<input type=password> <br>
<input type=checkbox checked>
</body>
</html>
帮助表示赞赏。提前致谢! :)
答案 0 :(得分:0)
你的代码实际上是正确的..在Chrome,firefox mozilla和IE上工作
<!DOCTYPE html>
<html>
<head>
<title>Learning Input</title>
</head>
<body>
<form>
<input type=text value="Enter your name" maxlength="10"> <br>
<input type=password> <br>
<input type=checkbox checked>
</form>
</body>
</html>