0

有人知道如何将“无结果”更改为其他文本...

我有这个代码:

function OnLoad() {
  // Create a custom search control that uses a CSE restricted to code.google.com
  var customSearchControl = new google.search.CustomSearchControl('http://******');

  // Draw the control in content div
  customSearchControl.draw('ArticleGoogleSearchBox');

}

有任何想法吗???

4

2 回答 2

2

有像 .setNoResultsString(str) 这样的选项

https://developers.google.com/custom-search/docs/js/cselement-reference#cse-el

于 2012-08-28T09:31:24.970 回答
1

您可以从此 URL https://developers.google.com/custom-search/docs/js/rendering找到明确的解决方案。阅读“示例:对条件、迭代和局部变量使用数据属性”部分并应用 if-else 属性来自定义搜索内容。

于 2012-08-28T09:32:10.757 回答