我将在 html 页面中添加 jquery json 数据的位置。所有 HTML 页面组件都消失了,只在页面左上方显示 json 数据:
$.getJSON('http://api.wipmania.com/jsonp?callback=?',
function (data) {
document.write('Latitude: ' + data.latitude + '\nLongitude: ' + data.longitude + '\nCountry: ' + data.address.country);
}
);