代码:
<form action="http://www.example.com/s" method="get">
<input type="text" name="wd">
<input type="submit" value="搜索" />
</form>
想在这样一个搜索框中加一个固定的参数传递到网址里,例如:
在文本框中输入 V2EX ,点击搜索按钮就会打开:
http://www.example.com/s?wd=V2EX&utm_source=XXX
请问这个 &utm_source=XXX 怎么加进去?谢谢 ^-^
1
swuzjb 2015-10-27 15:24:51 +08:00
<form action="http://www.example.com/s?utm_source=XXX" method="get">
<input type="text" name="wd"> <input type="submit" value="搜索" /> </form> |
2
sox 2015-10-27 15:29:01 +08:00 2
可惜并不能像楼上这样写,而是
<input type="hidden" name="utm_source" value="XXX"> |
3
cxbig 2015-10-27 15:37:40 +08:00
如果这些 SEO 的参数是固定的,用 Input hidden 就好了。
|
4
x86 2015-10-27 15:40:40 +08:00
加个隐藏域
|
6
guozhi OP |