Googleサイト検索のフォームを作る
Googleのサイト検索は、検索範囲をある特定のサイトに絞ることができる検索です。 <a href=http://www.google.co.jp/intl/ja/help/features.html#sitesearch>サイト検索</a> 「言葉 site:stabucky.com」のようにすればサイト検索ができますが、これをフォームにあらかじめセットする方法は次の通り。 Google AdSenseならばウィザード形式で作成することができますが、広告収入は要らない、簡単に作りたい、という場合に。
<form method=get action="http://www.google.co.jp/search"> <input type=text name=q size=31 maxlength=255 value=""> <input type=submit name=btnG value="stabucky.com"> <input type=hidden name=sitesearch value="stabucky.com"> <input type=hidden name=ie value=UTF-8> <input type=hidden name=oe value=UTF-8> <input type=hidden name=hl value="ja"> </form>
「name=sitesearch」の「value」に特定のサイトをセットします。
|