我需要使用 Ajax 对查询数据库的 PHP 文件进行调用。PHP 与 HTML 文件位于不同的域中,因此我当前的代码在 IE、7、8 和 9 中不起作用。以下是在另一个域上调用 php 的示例。
$.post('http://other-domain.com/promo_subscribe.php', subscribeData, function(data){
}
$.get('http://other-domain.com/misc/promo_getstate.php', {
crossDomain : true,
cache:false,
email: emailaddress,
country: 'DE',
lang: lang,
source: 'Spring_dly'
}, function (test) {
}
对我来说最好的选择是什么?是否需要后端更改?