问答详情
源自:3-6 get与post提交方式的区别

为什么我的网页显示密码后面啥也没有

http://img.mukewang.com/582ecde00001b67e02540177.jpg 

没有出现那个输入密码的框     input type="password"   我也是这样设置的啊?


<body>

    <h1>用户登录</h1>

    <hr>

    <form action="dologin.jsp" name="loginForm" method="get">

    <table>

    <tr>

    <td>用户名</td>

    <td><input type="text" name="username"/></td>

    </tr>

    <tr>

    <td>密码</td>

    <td><intput type="password" name="password"/></td>

    </tr>

    <tr>

    <td colspan="2"><input type="submit" value="登录"></td>

  </tr>

    </table>

    </form>

  </body>


提问者:Curry_Coder 2016-11-18 17:47

个回答

  • Curry_Coder
    2016-11-18 17:54:20

    所以说 一定要仔细  原来我的input  写错了   拼成了 intput   真是打脸    大家引以为戒!