解決方法是:
復制代碼 代碼如下:
//www.B.com裡的被調用的頁面需要寫P3P頭,從而解除IE對寫Cookie的阻止
context.Response.AddHeader("P3P", "CP=CAO PSA OUR");
//www.A.com裡通過ajax調用www.B.com裡的內容時,是跨域訪問,需要使用jsonp,為配合其工作需要添加下面兩句,生成jsonp返回
context.Response.ContentType = "text/plain";
context.Response.Write(string.Format("{0}('OK')", context.Request["callback"]));
復制代碼 代碼如下:
//jsonp調用進行跨域訪問
jQuery.ajax({
url: url,
type: 'GET',
data: data,
dataType: 'jsonp',
success: function (data) {
window.location.href = toURL;
}
});