在我的 html 网站的 google 自定义搜索引擎中向文本框添加占位符
Adding placeholder to text box in google custom search engine in my html website
我使用以下代码添加了 google 自定义搜索引擎。
(function() {
var cx = '005899633628958982661:wekn1lpckzg';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
现在我的站点有一个可用的搜索框,唯一的问题是我无法为搜索文本框使用占位符。
我也试过代码
$('input.gsc-input').attr('placeholder', 'custom text here');
但它不起作用。
这个适合我:
window.onload = demo;
function demo() {
document.getElementById("gsc-i-id1").setAttribute("placeholder", "SEARCH")
}
我使用了以下代码,它对我有用!
(function() {
var cx = '!!!!!!!!!!!!!!!!!!!';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx='+ cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
window.onload = function(){
document.getElementById('gsc-i-id1').placeholder = 'SEARCH';
};
我使用以下代码添加了 google 自定义搜索引擎。
(function() {
var cx = '005899633628958982661:wekn1lpckzg';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
现在我的站点有一个可用的搜索框,唯一的问题是我无法为搜索文本框使用占位符。
我也试过代码
$('input.gsc-input').attr('placeholder', 'custom text here');
但它不起作用。
这个适合我:
window.onload = demo;
function demo() {
document.getElementById("gsc-i-id1").setAttribute("placeholder", "SEARCH")
}
我使用了以下代码,它对我有用!
(function() {
var cx = '!!!!!!!!!!!!!!!!!!!';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx='+ cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
window.onload = function(){
document.getElementById('gsc-i-id1').placeholder = 'SEARCH';
};