jQuery跨域访问方式提示XMLHttpRequest cannot load

$(function($){
 var url = 'http://www.netpc.com.cn/weather/index';
 $.ajax(url, {
 data: {
 'cityname': '北京',
 'dtype': 'jsonp',
 'key': 'xxxx',
 '_': new Date().getTime()
 },
 dataType: 'jsonp',
 crossDomain: true,
 success: function(data) {
 if(data && data.resultcode == '200'){
 console.log(data.result.today);
 }
 }
 });

var url2 = 'http://www.netpc.com.cn/weather/index?callback=?';
 $.getJSON(url2, {
 'cityname': '上海',
 'dtype': 'jsonp',
 'key': 'xxxx',
 '_': new Date().getTime()
 }, function(data){
 if(data && data.resultcode == '200'){
 console.log(data.result.today);
 }
 });

var url3 = 'http://www.netpc.com.cn/weather/index?callback=?';
 $.get(url3, {
 'cityname': '香港',
 'dtype': 'jsonp',
 'key': 'xxxx',
 '_': new Date().getTime()
 }, function(data){
 if(data && data.resultcode == '200'){
 console.log(data.result.today);
 }
 }, 'json');
 });
此条目发表在开源代码分类目录,贴了标签。将固定链接加入收藏夹。

发表回复