发布网络请求

发布于 2024-10-09 14:56:31 字数 683 浏览 2 评论 0原文

我在向服务器发布参数时遇到问题...... 据我所知,当我发送如下请求时: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初吻给了烟 2024-10-16 14:56:31

这就是当您使用图像按钮发布表单时所发送的内容。应该有一个带有 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 with type="image" and name="s1".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文