巴巴鲁 发表于 2021-7-23 10:54:53

html的sumbit点击提交无反应

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <center>
      <from action="/myWeb/login" method="post">
            <table border="2">
                <tr>
                  <td>登录名</td>
                  <td><input type="text" name="userName"/></td>
                </tr>
                <tr>
                  <td>密码</td>
                  <td><input type="password" name="password"/></td>
                </tr>
                <tr>
                  <td><input type="submit" value="登录"/></td>
                  <td><input type="reset" /></td>
                </tr>
            </table>
      </from>
    </center>
</body>
</html>

qiuyouzhi 发表于 2021-7-23 11:17:32

不懂 HTML, 但猜测是不是
<form action="/myWeb/login" method="post">
你写成了from?

wp231957 发表于 2021-7-23 11:17:53

你向哪里提交
action="/myWeb/login"
正常是向服务器提交   你呢?

巴巴鲁 发表于 2021-7-23 14:18:52

qiuyouzhi 发表于 2021-7-23 11:17
不懂 HTML, 但猜测是不是

你写成了from?

是,找半天错

巴巴鲁 发表于 2021-7-23 14:19:34

wp231957 发表于 2021-7-23 11:17
你向哪里提交
action="/myWeb/login"
正常是向服务器提交   你呢?

就试试参数向浏览器提交了没有
页: [1]
查看完整版本: html的sumbit点击提交无反应