html表单发布数据
我用 HTML 设计了一个表单,想要将数据提交到我制作的一个非常简单的 java Web 服务器。在表单中,我将操作指定为“post”,因此我假设这就是它进入 java Web 服务器的方式,但当我在调试器中查看它时,“GET”被卡在 URI 前面。如果我尝试在网络服务器关闭的情况下提交数据,我会收到“找不到您要查找的页面”消息,但我会看到所有数据都滞留在 URL 中。我不确定这是否正常。
有人可以看一下我的 HTML 页面并让我知道我是否做错了什么吗?
<head>
<title>FormTest</title>
</head>
<body>
<form action="http://localhost:1088/mailer.html method="post">
<div>
<label>
First Name: <input type="text" name="firstname" size="30" />
</label>
<label>
Last Name: <input type="text" name="firstname" size="30" />
</label>
</br>
There's a bunch more text boxes and such here, but you get the idea.
<input type="submit" text="Submit!" name="submitBtn" />
</div>
</form>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要用引号关闭表单标签属性:
您有 -
你需要——
You need to close off the form tag attributes with a quotation mark:
You have -
You need -