有人知道如何将“无结果”更改为其他文字......
我有这段代码:
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');
}
任何想法???
答案 0 :(得分:2)
有.setNoResultsString(str)
之类的选项https://developers.google.com/custom-search/docs/js/cselement-reference#cse-el
答案 1 :(得分:1)
您可以从此网址https://developers.google.com/custom-search/docs/js/rendering找到明确的解决方案。阅读“示例:使用条件,迭代和局部变量的数据属性”部分,并应用if-else属性来自定义搜索内容。