jsonp 跨域问题

前端之家收集整理的这篇文章主要介绍了jsonp 跨域问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jsonpcallback({"count":1,"list":[{"s_id":"1","s_u_openid":"ocrNgt-WZWKVdkjIgSz_F_2-QgVo","s_content":"1513213","s_time":"1439175101"}],"end_time":"1439175101"});

方式一:

$.ajax({
			type : 'GET',url : 'http://testweixin.smm.cn/index.PHP?m=home&c=Index&a=danmu&time=0&num=10&callback=?',dataType : 'jsonp',success: function(data){
			  console.log(data);
			  alert("信息读取成功提示!");
			},error : function() {
			  alert('信息读取失败提示!');
			}
			});

方式二:
$.ajax({
			type : 'GET',url : 'http://testweixin.smm.cn/index.PHP?m=home&c=Index&a=danmu&time=0&num=10',jsonp : "jsonpcallback",jsonpCallback:"jsonpcallback",error : function() {
			  alert('信息读取失败提示!');
			}
			});
原文链接:https://www.f2er.com/json/289678.html

猜你在找的Json相关文章