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