Google 自定义网络搜索:隐藏控件
我的网站上有这段代码:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用一些 jQuery 来隐藏 Google 标准表单并触发其提交。
I ended up using some jQuery to hide the Google standard form and trigger its submission.