Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的网站上放置一个谷歌搜索栏,但我不想使用谷歌 CSE。相反,我想使用输入字段并将结果显示在正常页面上,如果您要进行谷歌搜索
以下表格可以解决问题:
<form action="http://www.google.com/search" method="get"> Google this: <input type="text" name="q"> <input type="submit" value="Search"> </form>
通过在 google.com 上执行搜索,您可以自己看到 Google 正在使用 GET 方法q作为搜索值的键。
q