-3

ウェブサイト内を検索する検索ボックスを追加したいと考えています。外部検索エンジンを追加したくありません。JavaScriptコードが役立ちます。私を助けてください。

4

1 に答える 1

2

HTMLでこれを試してください:

<form method="get" action="http://www.google.com/search">
    <input type="text" name="q" size="31"
     maxlength="255" value="" />
    <input type="submit" value="Google Search" />
    <input type="radio" name="sitesearch" value="" />
    The Web
    <input type="radio" name="sitesearch"
     value="yoursite.com" checked />My site name here
</form>
于 2013-03-18T10:45:13.243 に答える