我使用标准的复制粘贴代码的谷歌自定义搜索(免费与广告)。我想在页面加载时在搜索框中添加一些文本,这可能吗?
如果有,怎么做?
代码如下:
<div id="cse" style="width: 100%;">Loading</div>
<script src="//www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1', {language : 'en'});
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl('000203232594935527974:aspio6dmwkq');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
}, true);
</script>
<link rel="stylesheet" href="//www.google.com/cse/style/look/default.css" type="text/css" />
浮动的默认Google徽标和"自定义搜索"字样不会打扰我。
我也想知道我是否可以在页面加载时运行自定义搜索。
使用"仅限结果"代码。通过这样做,您可以使用自己的搜索框。
如果你想在搜索框中显示一些文本,试试这个:
<form id="cse-search-box" action="http://www.yoursite.com/" method="get">
<input type="text" name="q" autocomplete="off" size="30" onfocus="if(this.value==this.defaultValue)value=''" onblur="if(this.value=='')value=this.defaultValue;" value="THE TEXT YOU WANT HERE" />
</form>