我的网站中的搜索框在页面内搜索

时间:2013-03-18 10:41:54

标签: javascript html5

我想添加一个在我的网站中搜索的搜索框。我不想添加任何外部搜索引擎。一个javascript代码会很有帮助。请帮帮我。

1 个答案:

答案 0 :(得分: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>