0

因此,我正在创建一个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>
4

1 回答 1

0

在加载时运行函数:

window.onload = function() {
  //do stuff
}

在选中复选框时运行

<input id="sota" type="checkbox" name="vehicle" value="Bike" onchange="chgFn(this)">
<script>
function chgFn(chkBox) {
  if(chkBox.checked){
      //do stuff
  }
}
</script>
于 2013-04-03T13:44:45.107 回答