<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>文本输入框、密码输入框</title>
</head>
<body>
<form method="post" action="save.php">
姓名:
<input type="text" name="myName"/>
<br/>
密码:
<input type="password" name="pass"/>
</form>
</body>
</html>
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>文本输入框、密码输入框</title> </head> <body> <form method="post" action="save.php"> 账户: <!--这里是账户,不是姓名--> <input type="text" name="myName" value="小写字母或数字组成,6——18位" /> <br /> 密码: <input type="password" name="pass" /> </form> </body> </html>
代码本身没有什么错误,不过如果你是在5-2的课程中提交不通过的话,应该是由于你把代码本身的"账户"两字改成了"密码"
我刚刚把你的代码复制到慕课网的那个代码区,运行后是可以显示出来的,你是用什么运行的?