2

我希望将 Google 自定义搜索添加到我的网站,但我已经设置了搜索框占位符的样式,我希望我的搜索框看起来像这样。

经过一番搜索,似乎所有以前的问题都像这个问题已经过时了。

关于样式,我发现的唯一一件事是:

<script>
    (function() {
    var cx = 'XXXXXXXXXX:YYYYYYYYY';
    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>
<div style="width:0px;overflow:hidden;height:0px;"> <!-- if you use display:nonw here it doesn't work-->
    <gcse:search></gcse:search>
</div>
<form id="searchbox_XXXXXXXXXX:YYYYYYYYY" action="">
    <input value="XXXXXXXXXX:YYYYYYYYY" name="cx" type="hidden"/>
    <input value="FORID:11" name="cof" type="hidden"/>
    <input id="q" style="" name="q" size="75" type="text"/>
    <button class="btn">Search</button>
</form>

但是,当您提交表单时,什么也没有发生。

我注意到 action="" 留空,当我输入我的网站“www.kokorugs.com/”时,它也不起作用。

任何想法将不胜感激!

4

1 回答 1

0

我发现的唯一方法是使用 JQuery 在渲染的 Google 元素中创建挂钩。由于您想将自定义搜索框挂接到元素中,因此您应该渲染gsce:results-only而不是gsce:search并遵循我之前的答案之一的实现。

于 2016-03-02T19:12:51.613 回答