在表单上的POST方法上找不到404

时间:2017-02-03 00:03:54

标签: html forms

我在页面上有这个简单的表格。我在localhost上运行它,但是当我运行表单时,它将重定向到http://localhost:63342/welcome.html

但我得到404未找到的消息。

当我在浏览器中标记网址并点击返回时,显示正确的页面。但是当使用method =“POST”到localhost

时,重定向不起作用

知道如何解决这个问题吗?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>

<body>
    <form method="POST" action="welcome.html">
        <input type="text" id="test" name="test"/>
        <input type="submit" value="test"/>
    </form>
</body>

</html>

1 个答案:

答案 0 :(得分:0)

我认为你想使用GET方法而不是POST方法。

请点击此处了解详情:http://www.w3schools.com/TAGS/ref_httpmethods.asp