我想添加“Google CSE”,但我不想要Google创建的所有html和css,所以在互联网上,我几乎找到了解决方案:
<!-- Google custom search box Start -by BloggerSentral.com -->
<div class='cse' style='color:#000000;float:right;margin:6px 10px 0 0 ;'>
<form action='http://www.google.com/cse' target="_blank" id='cse-search-box'>
<input name='cx' type='hidden' value='015736343358803935205:m2shzyx2lrg'/>
<input type='text' name='q' size='35' />
<input name='ie' type='hidden' value='ISO-8859-1'/>
<input type="submit" name="sa" value="Search" />
</form>
<script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&lang=en"></script>
</div>
<!-- Google custom search box End -->
此代码必须插入已存在的栏中。
在我的控制面板“google cse”中,在“布局”部分中,我选择仅结果
现在,当我在此栏中搜索时,它会打开一个页面:
http://www.google.com/cse+ id google cse + keyword searching
它有效。
但是,我希望在我网站页面的div(#content)中看到这些结果。这可能吗?
答案 0 :(得分:0)
我做过的男孩! ;) 我真的希望这个提案对许多人有用,也因为我注意到关于google cse的问题收到的答案很少..
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
google.load('search', '1');
google.setOnLoadCallback(googlata);
function googlata(){
var customSearchControl = new google.search.CustomSearchControl('015736343358803935205:m2shzyx2lrg'); // change this to your unique ID
customSearchControl.setResultSetSize(20);
customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF); // open results in new window
var options = new google.search.DrawOptions();
options.setAutoComplete(true);
options.enableSearchResultsOnly()
customSearchControl.draw('cse',options); // set the results div id
//ottengo keyword searched
var link= self.location.href;
var inizio = link.search("q=")+2;
var fine= link.search("&");
var keyword= (link.slice(inizio,fine)).replace('+',' ');
//
customSearchControl.setNoResultsString("<div style='padding:10px'><h2><b>Nessuno risultato per: "+keyword+" </b></h2><br><h3>Prova a cercare qualcosa di simile, siamo certi che potrai trovare cio' che ti interessa!</h3><br><br><br>Se il problema persiste non esitare a <a href='http://www.mywebsite.com/Contattaci'>contattarci</a>, provvederemo il prima possibile.</div>");
customSearchControl.execute(keyword);
var newlink= link.replace('&sa=Search','');
history.pushState({}, null, newlink);
}
<div id="cse" style="width:100%;">Loading</div>
在我的情况下,结果将在div id="cse"
options.enableSearchResultsOnly()
我只绘制了结果页面,所以我的搜索栏是一个普通的搜索栏,我用方法get发送我的数据,实际上是我的函数googlata()
我通过url获取数据(关键字),而不是我更改我的网址,因为我想要一个干净的网址。
理解谷歌搜索的API 2.0非常重要,我建议阅读:
https://developers.google.com/custom-search/docs/js/cselement-reference
来自意大利的再见! :d