Google CSE 多个搜索栏问题

发布于 2024-12-31 21:44:50 字数 153 浏览 0 评论 0原文

我正在使用两页外观,即搜索栏在一页上,结果在另一页上。

我的标题中有一个搜索栏,当我搜索某些内容时,它会将我带到一个新页面以显示结果。问题是,当我进入新页面时,有另一个搜索栏。所以现在我在同一页面上有两个搜索栏,它们做同样的事情。

有没有办法删除第二个搜索栏?

I am using the two page look and feel, i.e. Search bar on one page, results on another.

I have one search bar in my header, when I search for something it takes me to a new page for the results to be shown. The problem is, when I get to the new page, there is ANOTHER search bar. So now i have two search bars on the same page, which do the same thing.

Is there a way to remove the second search bar?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谈情不如逗狗 2025-01-07 21:44:50

是的。
在 JavaScript 中的某个位置,您将创建一个 DrawOptions 对象:

var options = new google.search.DrawOptions();

在这一行之后添加这一行:

options.enableSearchResultsOnly();

这将删除搜索框。然而,我遇到的问题是标题中的搜索框(您确实想要的搜索框)中没有查询词。

顺便说一句,这里是 JavaScript API 参考的链接

Yup.
Somewhere in your JavaScript you'll be creating a DrawOptions object:

var options = new google.search.DrawOptions();

After this line add this one:

options.enableSearchResultsOnly();

Which will get rid of the search box. However the problem I'm having is that the search box in the header (the one you do want) doesn't have the query term in it.

BTW, here's a link to the JavaScript API reference

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