我正在解决一个特殊的问题。$.getJSON 无法正常工作
$.getJSON('http://golfersapp.omaserver.com/courses.php?populate=country', function(listcountry1) {
alert("golf server");//alert is not showing
});
但下面运行正常
$.getJSON('http://inveniya.net/jasmine-device/TenantList.php', function(data) {
alert("inveniya");// it is showing properly
});
简单的警报不会出现!两者都从同一页面运行。一个正在运行,另一个没有运行。有什么线索吗?
提前致谢