1 <!-- Search Google --> 2 <form method="get" action="http://www.google.com/search"> 3 <div style="background-color:white"> 4 <a href="http://www.google.com/intl/zh-CN/"> 5 <img src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" /> 6 </a> 7 <input type="text" name="q" size="31" maxlength="255" value=" " /> 8 <input type="hidden" name="ie" value="GB2312" /> 9 <input type="hidden" name="oe" value="GB2312" />10 <input type="hidden" name="hl" value="zh-CN" />11 <input type="submit" name="btnG" value="Google Search" />12 </div>13 </form>14 <!-- Search Google -->15
把下面代码中的http://www.dreamdu.com/替换成你的域名就可以实现搜索站内信息了。
1 <!-- SiteSearch Google --> 2 <form method="get" action="http://www.google.com/search"> 3 <div style="background-color:white"> 4 <a href="http://www.google.com/"> 5 <img src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" /> 6 </a> 7 <input type="text" name="q" size="31" maxlength="255" value="html" /> 8 <input type="hidden" name="ie" value="GB2312" /> 9 <input type="hidden" name="oe" value="GB2312" />10 <input type="hidden" name="hl" value="zh-CN" />11 <input type="submit" name="btnG" value="Google Search" />12 <input type="hidden" name="domains" value="http://www.dreamdu.com/" />13 <br />14 <input type="radio" name="sitesearch" value=" " />15 <label for="sitesearch">搜索WWW</label>16 <input type="radio" name="sitesearch" value="www.dreamdu.com" checked="checked" />17 <label for="sitesearch">搜索梦之都</label>18 </div>19 </form>20 <!-- SiteSearch Google -->21