Posted in Javascript onMay 21, 2013
<!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>
jquery实现智能感知连接外网搜索
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@