私は Google CSE を使用しているので、主なアイデアは、CSE 検索ボックスの下に「トップ検索用語」を表示することです。しかし、CSE パネルで、Google は次のように述べています。
一覧に表示されるほど人気のあるクエリはありませんでした
とにかく(私はそれが十分になるのを待ちたくありません)..私はそれを自分で実装したいと思っています。
- 検索文字列を (Google に)キャプチャする
submit
最良の方法は何ですか?
または
- が使用されていると想定できるように、(Google から戻って)をキャプチャする
returning results
最良の方法は何ですかSearch Term
。したがって、現在の検索用語をマーク/保存できます。
.
参考までに、これまでに行ったことは次のとおりです。
<!-- Goolge CSE -->
<script language="JavaScript">
(function() {
var cx = 'xxxx3941849086xxxxx:xxxxmtk5xxxxxx';
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>
<body>
<!-- GCSE Search Box -->
<div class="global-search">
<gcse:searchbox-only linktarget="http://www.example.com/search" queryParameterName="query"></gcse:searchbox-only>
</div>
<!-- GCSE Result Div -->
<div id="googlecse-result">
<gcse:search linktarget="_parent" queryParameterName="query"></gcse:search>
</div>
</body>