我想添加一个在我的网站内搜索的搜索框。我不想添加任何外部搜索引擎。一个javascript代码会很有帮助。请帮帮我。
问问题
3046 次
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 回答