お品書き
書き直し中…
とりあえず、中へどうぞ
↓↓↓
スポンサーリンク

HPにヤフオクの検索窓を設置するには

PC/ネット
フォームを使ってHPに検索窓を設置したりできますが

こんな感じで書くと
<form method="get" action="http://www.google.co.jp/search">
<input name="q" size="31" maxlength="255" value="" type="text">
<input name="btng" value="検索" type="submit">
</form>
スポンサーリンク
スポンサーリンク
こうなる

これをYahooでやってみた
<form action="http://search.yahoo.co.jp/search" method="get">
<input type="text" name="p" size="31">
<input type="submit" value="Yahoo検索">
</form>

こうなった

ヤフオク!でやってみた
<form method="get" action="http://auctions.search.yahoo.co.jp/search">
<input name="p" size="31" maxlength="255" value="" type="text">
<input value="ヤフオク検索" type="submit">
</form>

こうなった

コメント