问答详情
源自:6-2 先来填用户名和密码 - 文本输入框、密码输入框

这是哪里有问题啊?姓名,密码显示不出来

<!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>


提问者:milanweishi 2016-04-07 02:48

个回答

  • 为了遇见最好的你
    2016-04-22 10:53:09

    <!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>


  • 为了遇见最好的你
    2016-04-22 10:50:16

    代码本身没有什么错误,不过如果你是在5-2的课程中提交不通过的话,应该是由于你把代码本身的"账户"两字改成了"密码"

  • 橙蓄缘杀手
    2016-04-07 04:50:39

    我刚刚把你的代码复制到慕课网的那个代码区,运行后是可以显示出来的,你是用什么运行的?