最简单的自定义搜索
September 04, 2009
06:09 AM, Sep 04
Google大神推出了Custom Search Element,大大提升了自定义搜索的用户体验,同时降低了使用自定义搜索的难度。使用方法是出奇的简单,只要将几行代码加入到侧边栏即可。
<!-- Google Custom Search Element -->
<div id="cse" style="width:100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1');
google.setOnLoadCallback(function(){
new google.search.CustomSearchControl().draw('cse');
}, true);
</script>
Google提供了ajax搜索的类参考供程序员使用。不过,对于大多数用户来说是没有必要的。如果你觉得搜索框下面的“powered by”很难看,在CSS中加入
table.gsc-branding{
display:none;
}
即可隐藏。