在网页里嵌入谷歌搜索框功能,利用谷歌搜索来为自己的网站打造最佳的用户体验!具体的代码如下(作者没有找到谷歌搜索框API地址,这里只把在网上找到的一些代码贴出来,功能是没有问题的):
<!-- Search Google --> <center> <form method=get action="http://www.google.com/search"> <table bgcolor="#FFFFFF"><tr><td> <a href="http://www.google.com/intl/zh-CN/"> <img src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" align="absmiddle"></a> <input type=text name=q size=31 maxlength=255 value=""> <input type=hidden name=ie value=GB2312> <input type=hidden name=oe value=GB2312> <input type=hidden name=hl value=zh-CN> <input type=submit name=btnG value="Google 搜索"> </td></tr></table> </form> </center> <!-- Search Google -->
注意:如果你的页面编码是utf-8的,这需要将以上代码中的字符集GB2312都换成utf-8。效果如下图: