为什么此HTML表单不提交参数?

问题描述 投票:0回答:1

我只是一个简单的问题。有人知道为什么这个html页面(表单)不起作用吗?

<html>
<head></head>
<body>
<form method=POST action=show-query-params>
<p>
<input type=text name=foo id=foo size=20 value=nameee />
</p>
<p>
<input name=submit type=submit value=submit />
<input type=reset value=Reset />
</p>
</form>
</body>
</html>

当我单击提交时,页面“ http://localhost:8080/show-query-params”打开,但没有参数。预先感谢!

html forms parameters submit
1个回答
0
投票

当您使用method="GET"(默认)提交表单时,数据将添加到URL的查询字符串中。

© www.soinside.com 2019 - 2024. All rights reserved.