ID:10982724
大小:53.00 KB
页数:0页
时间:2018-07-09
4、!--翻页导航-->
5、ttonid="btnSearch"type="button"title="搜索">搜索
6、ources="Sources=Web";//指定API版本varVersion="Version=2.0";//指定所在地区,如google,每个地区搜索结果是不一样的,这里指定中国varMarket="Market=zh-cn";//一些选项设置,这里开启搜索结果中的搜索词高亮varOptions="Options=EnableHighlighting";//每页返回条数varWebCount=10;//当前为第几页,从0开始的varWebOffset=0;1.为搜索按钮绑定处理方法:$(function(){$('#btnSearch
7、').click(function(){//这里调用最关键的Search方法,取数据Search();});});2.下面来看最关键的Search部分,调用API获取结果数据:$(function(){functionSearch(){ //获取用户输入的搜索词,并替换空格为“+”varsearchTerms=$('#txtQuery').val().replace("","+"); //防止传输中文时产生乱码searchTerms=encodeURI(searchTerms); //将接口需要的所有参数封装为数组vararr=[AppId
8、,Query+searchTerms,Sources,Version,Market,Options,"Web.Count="+WebCount,"Web.Offset="+Web
此文档下载收益归作者所有