发布网络请求
我在向服务器发布参数时遇到问题...... 据我所知,当我发送如下请求时: http://www.xxxxx.xxx?var1=**&var2=**&...etc.
参数 var1 和 var2 直到 var(n) 必须在表单标记中...
<input type=hidden name=var1 value="10"/>
<input type=text name=var2 value="sami"/>
依此类推..
但是我遇到一个网站,该网站需要一些不在表单中的参数 确切的形式:
<form method="POST" name="snd" action="a2b.php">
...
<input type="image" value="ok" name="s1" id="btn_ok"
class="dynamic_img" src="img/x.gif" alt="تمام"/>
</form>
这里这篇文章发送参数 a2b.php?...&s1.x=10&s1.y=20
但没有任何名为 s1.x 或 s1.y 的输入以这种形式。 是否可以以(var.var)的形式放入参数?
I have a problem in posting parameters to a server...
as I know that when I send a request like the following: http://www.xxxxx.xxx?var1=**&var2=**&...etc.
parameters var1 and var2 till var(n) must be in the form tag...
<input type=hidden name=var1 value="10"/>
<input type=text name=var2 value="sami"/>
and so on..
But I faced one web site that expect some parameters that are not in the form
The exact form:
<form method="POST" name="snd" action="a2b.php">
...
<input type="image" value="ok" name="s1" id="btn_ok"
class="dynamic_img" src="img/x.gif" alt="تمام"/>
</form>
here this post sends parameters a2b.php?...&s1.x=10&s1.y=20
but there is no any inputs named s1.x or s1.y in this form.
Is it possible to put parameters in the form of (var.var)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是当您使用图像按钮发布表单时所发送的内容。应该有一个带有
type="image"
和name="s1"
的input
。That's what an image button is sending when you use it to post the form. There should be an
input
withtype="image"
andname="s1"
.