0

Google カスタム検索を使用しており、Jquery で独自の div を使用してフォームを送信したいと考えています。私は多くのことを試してみましたが、これはそのうちの 1 つです。

Google コード:

<script>
  (function() {
    var cx = 'partner-pub-2789521296837340:9402765321';
    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>


<gcse:search></gcse:search>

Jquery 部分:

$( document ).ready(function() {

$( "div.button" ).click(function() {
  $( "form.gsc-search-box" ).submit();
    return false;
});


});

実際の例: JsFiddle

4

1 に答える 1

2

フォーム (つまり、jQuery を使用して内部で作成された Google) を直接送信することはできません。ルック アンド フィールを変更するには、コードを変更する必要があります。これがあなたが探しているものです:

<form id="cse-search-box" action="http://google.com/cse">
  <input type="hidden" name="cx" value="YOUR SEARCH ENGINE ID goes here" />
  <input type="hidden" name="ie" value="UTF-8" />
  <input type="text" name="q" size="31" />
  <input type="submit" name="sa" value="Search" />
</form>
<img src="http://www.google.com/cse/images/google_custom_search_smwide.gif">

参考:https ://support.google.com/customsearch/answer/1351747?hl=ja

DEMO FIDDLE

于 2013-10-06T15:46:00.067 に答える