0
由於Google取消了Google自定義搜索引擎,因此我將切換到Bing的類似服務。谷歌提供了這樣一個腳本:用Bing自定義搜索替換GCSE
<script>
(function() {
var cx = 'KEY';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +'//cse.google.com/cse.js?cx=' + cx;var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script>
我可以用來顯示我的結果作爲iframe。我喜歡這個,因爲這意味着我不必處理顯示,分頁等。Bing是否提供了類似的東西,還是我必須自己寫這些東西?