当我尝试从localhost连接它时,它不起作用。但是我可以从这个URL看到JSON返回。如何从localhost连接?有谁能够帮我?
$.post("http://slhub.com.lk/msg/country_list.php", function(html) {
$("#countrylist").attr('disabled', true);
var Data = { "Data": $.parseJSON(html) };
$.each(Data.Data, function(i) {
var id = Data.Data;
$('#countrylist').append('<option value="' + id[i].country_code + '">' + id[i].country + ' (+' + id[i].country_code + ')</option>');
});
$("#countrylist").attr('disabled', false);
});
答案 0 :(得分:0)
我将这些标题添加到php中,它运行正常。谢谢大家。
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: POST');
header('Access-Control-Max-Age: 1000');