码迷,mamicode.com
首页 > 其他好文 > 详细

百度跨域搜索demo

时间:2017-03-29 22:23:00      阅读:518      评论:0      收藏:0      [点我收藏+]

标签:for   java   absolute   tom   htm   char   ott   his   .com   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
padding: 0;
margin: 0
}

.sousuo {
width: 300px;
height: 40px;
position: absolute;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
}

li {
list-style: none;
line-height: 30px;
padding: 0 10px;
}

li:hover {
background-color: #777;
color: #fff;
}

ul {
position: absolute;
display: none;
}
</style>
</head>
<body>
<input type="text" class="sousuo"/>
<ul class="ul"></ul>
<script src="../blog/javascripts/jquery-1.7.2.min.js"></script>
<script>

function position() {
var sousuo = $(".sousuo");
$(".ul").css({
top: sousuo.offset().top + sousuo.height() + 5,
left: sousuo.offset().left,
width: sousuo.css("width")
})
}
function demo(data) {
var ul = $(‘.ul‘);
var html = ‘‘;
if (data.s.length) {
ul.css("display",‘block‘);
for (var i = 0; i<data.s.length; i++) {
html +=‘<li>‘+data.s[i]+‘</li>‘;
}
ul.html(html);
}
}
$(".ul").delegate("li",‘click‘,function () {
location.href = ‘https://www.baidu.com/s?wd=‘+$(this).text();
});
$(document).ready(function () {
position();
$(‘.sousuo‘).on(‘keyup‘, function () {
if (this.value) {
var script = document.createElement("script");
script.src = ‘https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=‘+this.value+‘&cb=demo‘;
document.body.appendChild(script);
}
});
});
window.onresize = function () {
position();
}
</script>
</body>
</html>

百度跨域搜索demo

标签:for   java   absolute   tom   htm   char   ott   his   .com   

原文地址:http://www.cnblogs.com/ypinchina/p/6641939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!