jquery实现智能感知连接外网搜索
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <!--注意引用的插件,及顺序--> <link href="jquery.autocomplete.css" rel="stylesheet" type="text/css" /> <script src="Jquery1.7.js" type="text/javascript"></script> <script src="jquery.autocomplete.js" type="text/javascript"></script> <script src="messages_cn.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { var array = ['a', 'as', 'asd', 'bs', 'bd']; // 搜索获取选择的值 // $('#search').autocomplete(array).result(function (event, data) { // $('#Text1').val(data); // }); //智能感知连接外网搜索 $('#search').autocomplete(array).result(function (event, data) { window.location.href ='http://www.baidu.com/s?wd='+data+'+&rsv_spt=1&issp=1&rsv_bp=0&ie=utf-8&tn=56060048_pg&rsv_sug3=3&rsv_sug=0&rsv_sug1=3&rsv_sug4=172' }); }) </script> </head> <body> <div> <input type="text" id="search" /><input type="button" id="b1" value="搜索"/><input type="text" id="Text1" /> </div> </body> </html>
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17