我读过AJAX不能用于远程但找到解决方案但仍然面临着 如何使用Pure AJAX,任何指南? 我搜索了很多并尝试了一些方法,但没有得到。 当我使用相同的IP并获取数据时,它处理警告,但是当给出另一个服务器IP时,它不会获取。
function tooltipajax(r_ID) {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else {
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById('span'+ r_ID).innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET","http://ip here/common/accounteditajax.php?key=" +r_ID,true);
xmlhttp.send();
}
我试过HEADER
header("Access-control-Allow-Origin: http://IP HERE/common/");
它适用于带有警告的ip的本地服务器 无法修改标头信息 - 已经发送的标头(输出从
开始)但是没有使用其他服务器ip ..