主頁 > 知識(shí)庫 > PHP ajax跨子域的解決方案之document.domain+iframe實(shí)例分析

PHP ajax跨子域的解決方案之document.domain+iframe實(shí)例分析

熱門標(biāo)簽:正規(guī)電銷機(jī)器人系統(tǒng) 咸陽電銷 南京3D地圖標(biāo)注 濟(jì)源百應(yīng)電銷機(jī)器人聯(lián)系方式 邢臺(tái)400電話辦理 嘟嘟云外呼系統(tǒng) 南寧電話外呼系統(tǒng)線路 辦理400電話哪家好點(diǎn) 重慶外呼電銷系統(tǒng)多少錢

本文實(shí)例講述了PHP ajax跨子域的解決方案之document.domain+iframe。分享給大家供大家參考,具體如下:

對于主域相同,子域不同,我們可以設(shè)置相同的document.domain來欺騙瀏覽器,達(dá)到跨子域的效果。

例如:我們有兩個(gè)域名:www.a.com 和 img.a.com

在www.a.com下有a.html

在img.a.com下有img.json和img.html這兩個(gè)文件。

img.json就是一些我們要獲取的數(shù)據(jù):

[
  {
    "name" : "img1",
    "url" : "http://img.a.com/img1.jpg"
  },
  {
    "name" : "img2",
    "url" : "http://img.a.com/img2.jpg"
  }
]

img.html就是我們iframe要引用的:

!DOCTYPE html>
html>
head>
  meta charset="UTF-8">
  title>Insert title here/title>
/head>
body>
script src="./jquery.js">/script>
script type="text/javascript">
  document.domain = "a.com";

  var p = parent.window.$;
  p("#sub").text("我是子頁面添加的");
/script>
/body>
/html>

a.html就是要通過跨子域獲取數(shù)據(jù)的頁面:

!DOCTYPE html>
html>
head>
  meta charset="UTF-8">
  title>Insert title here/title>
/head>
body>
!-- 通過跨域獲取數(shù)據(jù),并添加到ul中 -->
ul id="data">/ul>

!-- 子頁面通過parent.window來訪問父頁面 -->
div id="sub">/div>

!-- 通過iframe引用img.a.com下的img.html -->
iframe id="iframe" src="http://img.a.com/img.html">/iframe>

script src="./jquery.js">/script>
script type="text/javascript">
document.domain = "a.com";

$("#iframe").bind("load", function() {
  //獲取子頁面的jquery對象
  iframe = document.getElementById("iframe").contentWindow.$;

  iframe.getJSON("http://img.a.com/img.json", function(data) {
    var con = "";
    //注意這里的$對象是www.a.com上的
    $.each(data, function(i, v) {
      con += "li>" + v.name + ":" + v.url + "/li>";
    });
    $("#data").html(con);
  });
});
/script>
/body>
/html>

a.html中我們通過contentWindow.$來獲取子頁面的jquery對象,然后通過getJSON獲取數(shù)據(jù),并通過www.a.com上的$對象把數(shù)據(jù)寫入到ul中。

在子頁面img.html中我們通過parent.window來訪問父頁面的$對象,并操作元素添加數(shù)據(jù)。

更多關(guān)于PHP相關(guān)內(nèi)容可查看本站專題:《PHP+ajax技巧與應(yīng)用小結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP下ajax跨域的解決方案之window.name實(shí)例分析
  • PHP下ajax跨域的解決方案之jsonp實(shí)例分析
  • PHP處理Ajax請求與Ajax跨域問題
  • jquery ajax結(jié)合thinkphp的getjson實(shí)現(xiàn)跨域的方法
  • PHP中運(yùn)用jQuery的Ajax跨域調(diào)用實(shí)現(xiàn)代碼
  • php+mysql+ajax 局部刷新點(diǎn)贊/取消點(diǎn)贊功能(每個(gè)賬號(hào)只點(diǎn)贊一次)
  • Jquery+AJAX實(shí)現(xiàn)無刷新上傳并重命名文件操作示例【PHP后臺(tái)接收】
  • PHP使用ajax的post方式下載excel文件簡單示例
  • PHP Ajax跨域問題解決方案代碼實(shí)例

標(biāo)簽:河南 通遼 唐山 武漢 南通 隴南 平頂山 黃山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP ajax跨子域的解決方案之document.domain+iframe實(shí)例分析》,本文關(guān)鍵詞  PHP,ajax,跨,子,域,的,解決方案,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP ajax跨子域的解決方案之document.domain+iframe實(shí)例分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP ajax跨子域的解決方案之document.domain+iframe實(shí)例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章