当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jquery实现智能感知连接外网搜索

jquery实现智能感知连接外网搜索

2019年01月18日  | 移动技术网IT编程  | 我要评论

jquery实现智能感知连接外网搜索代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://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 ='https://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>
<p>
<input type="text" id="search" /><input type="button" id="b1" value="搜索"/><input type="text" id="text1" />
</p>
</body>
</html>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网