php表单通过get提交,表单通过GET提交时,如何提交到一个带参数的地址

根据HTML的规定,通过GET方法提交表单时,action地址里的query string会被丢弃。

规定原文:

If the method is "get" and the action is an HTTP URI, the user agent

takes the value of action, appends a `?' to it, then appends the form

data set, encoded using the "application/x-www-form-urlencoded"

content type.

Mutate action URL

Let query be the result of encoding the form data

set using the application/x-www-form-urlencoded encoding algorithm,

interpreted as a US-ASCII string.

Let destination be a new URL that is equal to the action except that

its component is replaced by query (adding a U+003F QUESTION

MARK character (?) if appropriate).

所以,要实现你的需求,使用hidden input,是最简单的、无需编程的方式。

如果你嫌hidden input麻烦,那就遗憾了,没有更简单的方法了。

还有一个使用javascript的方法,但需要编程,比hidden input的方式麻烦,具体做法是:

监听form submit事件,onSubmit()时,依次做:

1. 取出action的值,把query string(问号后面那一串)解析出来

2. 往form里apeend两个hidden input元素,name和value使用上面第一步解析出来的结果

3. 用form.submit()提交表单

优点时,这个JS写好以后,无论你哪个页面有类似的需求,不管你有几个变量要提交到服务端,只要按你在这个主贴中给出的 form 标签那样,把query string写在action里,JS会自动把它转成hidden input,自适应的能力比较强,比手写hidden input要简洁一些。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值