-2
我想添加一個搜索框在我的網站內進行搜索。我不想添加任何外部搜索引擎。一個JavaScript代碼將會有所幫助。請幫助我。我的網站搜索框在頁面內搜索
我想添加一個搜索框在我的網站內進行搜索。我不想添加任何外部搜索引擎。一個JavaScript代碼將會有所幫助。請幫助我。我的網站搜索框在頁面內搜索
試試這個在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>