Я использую jQuery 1.7.2 и хочу сделать запрос POST другому домену. Это должен быть запрос POST. Но это делает не работать в Internet Explorer (я пробовал IE9); он работает во всех других браузерах.
У меня есть этот script:
<script>
jQuery.support.cors = true;
jQuery(function() {
$.ajax({
crossDomain : true,
cache: false,
type: 'POST',
url: 'http://someotherdomain/test.php',
data: {},
success: function(da) {
console.log(JSON.stringify(da))
},
error: function(jqxhr) {
console.log('fail')
console.log(JSON.stringify(jqxhr))
},
dataType: 'json'
});
});
</script>
Я возвращаю ошибку:
{"readyState":0,"status":0,"statusText":"Error: Access denied.\r\n"}
Мой PHP файл выглядит так:
<?php
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, DELETE, PUT, OPTIONS');
echo json_decode(array('success' => 'yes'));