您好,登錄后才能下訂單哦!
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。