百度的搜索下拉菜单数据接口,话说这几天发现一个新的百度下拉框接口
百度下拉框 接口数据调用:
http://suggestion.baidu.com/su?wd=银狐&json=1&p=3&cb=boottomSuggestion
https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=银狐
第一个是搜索的时候偶然看到的,第二个是很久以前的。
实例代码:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
#q {width: 300px; height: 30px; padding: 5px; border:1px solid #f90; font-size: 16px;}
#ul1 {border:1px solid #f90; width: 310px; margin: 0;padding: 0; display: none;}
li a { line-height: 30px; padding: 5px; text-decoration: none; color: black; display: block;}
li a:hover{ background: #f90; color: white; }
</style>
<script>
function leo(data) {//回调函数
var oUl = document.getElementById('ul1');
var html = '';
if (data.s.length) {//判断是否有数据
oUl.style.display = 'block';//有数据让下拉菜单显示出来
for (var i=0; i<data.s.length; i++) {
html += '<li><a target="_blank" href="http://www.baidu.com/s?wd='+data.s[i]+'">'+ data.s[i] +'</a></li>';
}
oUl.innerHTML = html;
} else {
oUl.style.display = 'none';//没有则不显示
}
}
window.onload = function() {
var oQ = document.getElementById('q');
var oUl = document.getElementById('ul1');
oQ.onkeyup = function() {
if ( this.value != '' ) {
var oScript = document.createElement('script');
oScript.src = 'http://suggestion.baidu.com/su?wd='+this.value+'&cb=leo';//this.value是咱们在输入框中输入的内容。leo是咱们定义的回调函数的名称
document.body.appendChild(oScript);
} else {
oUl.style.display = 'none';
}
}
}
</script>
</head>
<body>
<input type="text" id="q" />
<ul id="ul1"></ul>
</body>
</html>