html>
head>
script type="text/javascript" src="/js/jquery.min.js">/script>
script type="text/javascript">
function getData(keyword) {
var url="https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=" +keyword;
$.ajax({
type: "get",
async: false,
url: encodeURI(url),
dataType: "jsonp",
jsonp: "cb", // 后臺定義的回調(diào)函數(shù)標識符(一般默認為:callback)
jsonpCallback: "jsonCallback", // 自定義的jsonp回調(diào)函數(shù)名稱(默認為jQuery自動生成的隨機函數(shù)名)
success: function(data,status){
console.log(data);
console.log(status);
},
error: function(){
alert('fail');
}
});
}
/script>
/head>
body>
button onclick="getData('我');">百度搜索"我"/button>
/body>
/html>