我只是一个简单的问题。有人知道为什么这个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”打开,但没有参数。预先感谢!
当您使用method="GET"
(默认)提交表单时,数据将添加到URL的查询字符串中。