ajax获取跨域数据
作者:会飞的
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<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", // 后台定义的回调函数标识符(一般默认为:callback)
jsonpCallback: "jsonCallback", // 自定义的jsonp回调函数名称(默认为jQuery自动生成的随机函数名)
success: function(data,status){
console.log(data);
console.log(status);
},
error: function(){
alert('fail');
}
});
}
</script>
</head>
<body>
<button onclick="getData('我');">百度搜索"我"</button>
</body>
</html>
猜你喜欢
您可能感兴趣的文章:
- rawurlencode()和urlencode()函数区别
- Smarty优缺点
- Warning Cannot modify header information - headers already sent by
- 编写安全 PHP 应用程序的七个习惯
- 二维数组的array_unique函数
- 截取中文字符串时屏蔽乱码
- 静态页面已不利于搜索引擎优化和收录和排名
- 企业网站优化的弊端如何改变
- 去掉桌面图标阴影
- 如何针对MSN搜索进行网站优化
- 使用 mb_detect_encoding() 函数来判断字符串是什么编码的
- 网页状态码的含义网页错误类型详情
- 用php处理百万级以上的数据提高查询速度的方法
- 用php防止XSS跨站脚本攻击的方法
- 用php过滤网页中所有的html,css,js代码
- elasticsearch php Content-Type header [] is not supported
- elasticsearch php body为空
- PHP中调用 ElasticSearch的数据
- Access denied phpmyadmin ngxin