因此,我正在创建一个Google自定义搜索,该搜索具有一个复选框,该复选框会导致使用不同的Google自定义搜索,这是IM使用的代码,这是我的问题。我不知道当我点击搜索时脚本是否运行,因此没有得到新的更改。因此,当我选中该框时,我希望脚本再次重新运行,但我也希望脚本在加载时运行。
<script>
(function() {
if (jQuery('#sota').is(':checked')) {var cx = '001285214241856463016:s82pvcctjhm';} else {var cx ='001285214241856463016:zrd6kn8chti';}
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<form class="sech">
<input id="sota" type="checkbox" name="vehicle" value="Bike">Search Only Technologies Available For Licensing
</form>
<gcse:search></gcse:search>