我在网站上使用 Google Site Search。网站上有一个 cookie 提示器,在我们开始使用它们之前,它会要求用户接受 cookie。这工作正常。然而,在我们实施了谷歌搜索之后,事实证明谷歌也有几个 cookie。
我的问题是;我们如何让谷歌在用户接受它(或其他参数)之前不使用这些 cookie。
以下基本示例将使 Google 创建 2 个 cookie:
<script>
(function() {
var cx = '012:345'; // Insert your own Custom Search engine ID here
var 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:search></gcse:search>
任何想法如何解决/解决这个问题?