是否可以在 Google 自定义搜索的页面结果中添加下一个和上一个链接?我找到了这个线程如何在 Google 自定义搜索引擎分页链接中显示下一个/上一个链接,但代码适用于旧版本的 Google 自定义搜索。
较新的版本只是给你一个类似的标签<gcse:searchresults-only></gcse:searchresults-only>
,一切都由此生成。有任何想法吗?谢谢
这就是搜索结果被拉进来的方式。
<script>
(function() {
var cx = 'xxxxxx:xxxxx',
gcse = document.createElement('script');
gcse.type = 'text/javascript'; gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchresults-only></gcse:searchresults-only>