我希望将 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/”时,它也不起作用。
任何想法将不胜感激!