将 GET 参数附加到来自 <form> 的 URL行动 [英] Appending GET parameters to URL from <form> action

查看:18
本文介绍了将 GET 参数附加到来自 <form> 的 URL行动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以说我目前正在使用 index.php 或 index.php?p=about 在我当前的网络构建中.

So say I'm currently on index.php or index.php?p=about within my current web build.

我正在尝试构建一个将在大多数页面上显示的搜索表单,但我希望表单操作转到 http://mywebsiteurl.com/?p=search&q=GETDATA,因为我网站的分页取决于传递给p"属性的数据.

I am trying to build a search form that will be displayed on most pages, but I want the form action to go to http://mywebsiteurl.com/?p=search&q=GETDATA, as my website's paging depends on the data passed to the 'p' attribute.

如何在提交时以静态方式将搜索参数附加到 URL?

How would I append the search parameter to the URL in a static fashion, upon submission?

推荐答案

也许是这样的:

  <form method="get" action="index.php">
     <input type="hidden" name="p" value="search" />
     <input type="text" name="q" value="" />
     <input type="submit" value="search" />
  </form>

这篇关于将 GET 参数附加到来自 &lt;form&gt; 的 URL行动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆