我在我的网站上有这个代码:
<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化程序列表中。
答案 0 :(得分:0)
我最终使用一些jQuery来隐藏Google标准表单并触发其提交。