實現跨域iframe介面方法呼叫 簡單介紹

antzone發表於2017-04-03

頁面a.html域名為www.a.com,嵌入頁面http://www.b.com/b.html.

b.html要呼叫a.html中的js函式,由於兩個頁面不在一個域中,會提示沒許可權。

下面就介紹一下如何如何解決此問題,需要的朋友可以做一下參考。

一.cross.js程式碼如下:

[JavaScript] 純文字檢視 複製程式碼
(function(global){
  global.Cross = {
    signalHandler: {},
    on: function(signal, func){
      this.signalHandler[signal] = func;
    },
    call: function(win, domain, signal, data, callbackfunc){
      var notice = {"signal": signal, "data": data};
      if(!!callbackfunc){
          notice["callback"] = "callback_" + new Date().getTime();
          Cross.on(notice["callback"], callbackfunc);
      }
      var noticeStr = JSON.stringify(notice);
      win.postMessage(noticeStr, domain);
    }
  };
  $(window).on("message", function(e) {
    var realEvent = e.originalEvent,
        data = realEvent.data,
        swin = realEvent.source,
        origin = realEvent.origin,
        protocol;
    try {
        protocol = JSON.parse(data);
        var result = global.Cross.signalHandler[protocol.signal].call(null, protocol.data);
        if(!!protocol["callback"]){
          Cross.call(swin, origin, protocol["callback"], {result: result});
        }
        if(/^callback_/.test(protocol.signal)){
          delete Cross.signalHandler[protocol.signal];
        }
    } catch (e) {
      console.log(e);
      throw new Error("cross error.");
    }
  });
})(window);

二.a.html程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="jquery-1.8.3.min.js"></script>
<script src="cross.js"></script>
<script>
function call_b(){
  var ifw = $("#ifr")[0].contentWindow;
  //呼叫iframe子頁面的公開的test介面, 子頁面域名為http://localhost:8088
  Cross.call(ifw,"http://localhost:8088","test",{t: $("#txt").val()});
}
</script>
</head>
<body>
<input id="txt" type="text"/>
<button>call</button>
<iframe id="ifr" src="http://localhost:8088/b.html"></iframe>
</body>
</html>

三.b.html程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="jquery-1.8.3.min.js"></script>
<script src="cross.js"></script>
<script>
//對外公開一個介面命名為test
Cross.on("test", function(data){
  alert(data.t);
});
</script>
</head>
<body>
</body>
</html>

相關文章