我已經添加谷歌自定義搜索引擎使用以下代碼。在我的html網站的谷歌自定義搜索引擎中的文本框中添加佔位符
(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');
,但它無法正常工作。
那是輸入是否正確?我也會用引號''' –
你用document.ready調用這行嗎?我在 – progrAmmar
以上的代碼中看不到它是的,它是很小的document.ready ..我也試過把代碼放在最後的頁面,但這也無濟於事。 – atul