Google CSE 多个搜索栏问题
我正在使用两页外观,即搜索栏在一页上,结果在另一页上。
我的标题中有一个搜索栏,当我搜索某些内容时,它会将我带到一个新页面以显示结果。问题是,当我进入新页面时,有另一个搜索栏。所以现在我在同一页面上有两个搜索栏,它们做同样的事情。
有没有办法删除第二个搜索栏?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
在 JavaScript 中的某个位置,您将创建一个 DrawOptions 对象:
在这一行之后添加这一行:
这将删除搜索框。然而,我遇到的问题是标题中的搜索框(您确实想要的搜索框)中没有查询词。
顺便说一句,这里是 JavaScript API 参考的链接
Yup.
Somewhere in your JavaScript you'll be creating a DrawOptions object:
After this line add this one:
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