如何在我的 Google 自定义搜索框的付费版本中输入占位符或值?
我尝试使用 Google 提供的普通 API 脚本插件,如下所示:
<h5>SEARCH ON THIS SITE</h5></h6>
<div id="cse-search-form" style="width: 100%;">Loading ...</div>
<script type="text/javascript">
google.load('search', '1', {language : 'en'});
google.setOnLoadCallback(function() {
var customSearchOptions = {};
var imageSearchOptions = {};
imageSearchOptions['layout'] = google.search.ImageSearch.LAYOUT_CLASSIC;
customSearchOptions['enableImageSearch'] = true;
customSearchOptions['imageSearchOptions'] = imageSearchOptions;
var customSearchControl = new google.search.CustomSearchControl(
'312312312313123321312231:9cjokpdtmuaey', customSearchOptions);
customSearchControl.setResultSetSize(
google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.enableSearchboxOnly("search.htm");
customSearchControl.draw('cse-search-form', options);
}, true);
</script>
我发布的代码中是否有任何可见的错误?
我在这里的表格上找到了一个类似的问题,但是答案并没有解决我的问题: