Google 自定义网络搜索:隐藏控件

发布于 2024-12-15 22:53:10 字数 906 浏览 2 评论 0原文

我的网站上有这段代码:

<div id="cse" style="width: 100%;">Loading</div>
            <script src="//www.google.com/jsapi" type="text/javascript"></script>
            <script type="text/javascript"> 
              google.load('search', '1', {language : 'it'});
              google.setOnLoadCallback(function() {
                var customSearchControl = new google.search.CustomSearchControl('mybigbigbignumber');
                customSearchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
                customSearchControl.draw('cse');
              }, true);
            </script>
            <link rel="stylesheet" href="//www.google.com/cse/style/look/default.css" type="text/css" />

它按预期工作:出现 Google 搜索栏,搜索结果出现在下部框中。

我需要的是“透明”的搜索操作。

我的意思是通过我的表单将搜索词传递到 google WebSearch 服务,并在我制作的自定义 css 化列表中显示结果。

I have this code on my website:

<div id="cse" style="width: 100%;">Loading</div>
            <script src="//www.google.com/jsapi" type="text/javascript"></script>
            <script type="text/javascript"> 
              google.load('search', '1', {language : 'it'});
              google.setOnLoadCallback(function() {
                var customSearchControl = new google.search.CustomSearchControl('mybigbigbignumber');
                customSearchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
                customSearchControl.draw('cse');
              }, true);
            </script>
            <link rel="stylesheet" href="//www.google.com/cse/style/look/default.css" type="text/css" />

It works as expected: the Google search bar appears, and the search results appears in the lower box.

What I need is a "transparent" search action.

I mean passing the search terms throughout my form, to the google WebSearch service, and display result in a custom css-ized list made by me.

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

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

发布评论

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

评论(1

久光 2024-12-22 22:53:10

我最终使用一些 jQuery 来隐藏 Google 标准表单并触发其提交。

I ended up using some jQuery to hide the Google standard form and trigger its submission.

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