gpt4 book ai didi

jquery - 将占位符添加到我的 html 网站的 Google 自定义搜索引擎中的文本框

转载 作者:行者123 更新时间:2023-11-30 23:59:01 26 4
gpt4 key购买 nike

我使用以下代码添加了谷歌自定义搜索引擎。

(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');

但它不起作用。

最佳答案

我使用了以下代码,它对我有用!

(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';
};

关于jquery - 将占位符添加到我的 html 网站的 Google 自定义搜索引擎中的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35126085/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com