请帮忙,我一直在尝试获取 Json 数据但无济于事。我已经设法让它在 Dreamweaver 中工作,但一旦上传到我的域,它就无法工作。我看过很多例子,但无法让我的工作。我已经看到从 flikr 获取适用于我的域的图片的示例。我需要从http://api.open-notify.org/iss-now/获取 json 数据
这适用于dreamwaever
$.getJSON('http://api.open-notify.org/iss-now/',
function(json) {
$('#images1').text(json.timestamp);
});
和这个
$.ajax({
type: 'GET',
url: MyUrl,
dataType: "json",
success: function(data){alert("Success");hello(data);},
error: function(XMLHttpRequest, textStatus, errorThrown){alert("Error : "+" ':' "+textStatus+" ':' "+errorThrown);},
});}
这是一个跨域问题吗?为什么 Flikr 也可以工作,因为这也是跨域的?请帮忙。非常感谢。