js脚本ajax请求
news.xxx.com 请求www.xxx.com获取登录状态信息
$.ajax({
type: "GET",
url: 'http://www.xxx.com/index.php?m=member&'+Math.random(),
data: {},
dataType: "Html",
xhrFields: {
withCredentials: true//为真而执行跨域名请求
},
success: function(html){//返回登录信息
$('ul.topmenu').html(html);
}
});
php服务器端
$allow_origin=array('news.xxx.com','m.xxx.com');
$origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : ''; //来源网址
if(in_array($origin.'/', $allow_origin)){
header('Access-Control-Allow-Origin:'.$origin); //允许的域名
header('Access-Control-Allow-Credentials:true');//是否允许请求带有验证信息
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。