1. 程式人生 > >js跨域請求,並控制js執行順序

js跨域請求,並控制js執行順序

可完成標題中目標的手段可以有多種,如用link或iframe,或者用jquery框架,現以iframet為例介紹:

  1、不用任何js框架,如jquery方式實現:

       var body=document.getElementById("sp_logout");
 var a = document.createElement("iframe"); 
  a.src="http://192.168.6.220:7888/idp/BackgroundSLOServlet";//另一系統的url
  body.appendChild(a);
  a.onload=function()
 {
 window.location.href=url;//等iframe載入完成後,再執行

 }

2、利用jquery完成

$.ajax({
url: idpURL,
type: 'get',
dataType: 'jsonp'
}).complete(function(){
window.location.href = APS.PageContext.urls.logout;
});

}