主頁 > 知識(shí)庫(kù) > 跨域修改iframe頁面內(nèi)容詳解

跨域修改iframe頁面內(nèi)容詳解

熱門標(biāo)簽:ok電銷機(jī)器人 黃石ai電銷機(jī)器人呼叫中心 惡搞電話機(jī)器人 欣鼎電銷機(jī)器人 效果 智能電銷機(jī)器人被禁用了么 地圖標(biāo)注軟件打印出來 如何查看地圖標(biāo)注 高德地圖標(biāo)注商戶怎么標(biāo) 電話機(jī)器人技術(shù)

原理

主站點(diǎn)內(nèi)嵌代理頁面, 并向代理頁傳遞數(shù)據(jù), 代理頁根據(jù)主站點(diǎn)的數(shù)據(jù)對(duì)目標(biāo)頁的DOM進(jìn)行操作.由于代理頁與目標(biāo)頁同域, 所以代理頁可以獲取并操作目標(biāo)頁的document對(duì)象.

前提條件

需要將proxy.html放到與內(nèi)嵌的iframe頁同域的服務(wù)下, 并且可以被訪問到.

使用

支持2種調(diào)用方式: 使用 postMessage 和 URL params.

postMessage

該方法需要使用 JSON.stringify 將對(duì)象轉(zhuǎn)為字符串.

// React
function IframeProxy(props) {
    handleLoad = (e) => {
        e.target.contentWindow.postMessage(JSON.stringify({
            iframe: `<iframe name="target" title="target" className="target" src="http://www.targetdomain.com/target.html" frameBorder="0" scrolling="no" style="width: 100%;height:100%"></iframe>`,
            includeStyle: `
                body {
                    background-color: yellow;
                }
                header {
                    display: none;
                }
                footer {
                    display: none;
                }
            `,
            includeScript: `
                window.addEventListener('load', function() {
                    alert(document.querySelector('body').innerHTML);
                });
            `,
            importStyle: `http://www.mydomain.com/assets/css/import.css`,
            importScript: `http://www.mydomain.com/assets/js/import.js`
        }), 'https://www.target.com');
    }

    return <iframe name="proxy" title="proxy" className="proxy" width="100%" height="100%" onLoad={handleLoad} src={`http://www.targetdomain.com/proxy.html?origin=${window.location.protocol}//${window.location.host}`} frameBorder="0" scrolling="no"></iframe>;
}

URL params

該方法需要將傳遞的內(nèi)容用 encodeURIComponent 編碼.

// React
function IframeProxy(props) {
    var params = 'iframe=' + encodeURIComponent(`
        <iframe name="target" title="target" className="target" src="http://www.targetdomain.com/target.html" frameBorder="0" scrolling="no" style="width: 100%;height:100%"></iframe>
    `);

    params += '&includeStyle=' + encodeURIComponent(`
        body {
            background-color: red;
        }
        header {
            display: none;
        }
        footer {
            display: none;
        }
    `);

    params += '&includeScript=' + encodeURIComponent(`
        window.addEventListener('load', function(event) {
            alert(document.querySelector('body').innerHTML);
        });
    `);

    params += '&importStyle=' + encodeURIComponent(`
        http://www.mydomain.com/assets/css/import.css
    `);

    params += '&importScript=' + encodeURIComponent(`
        http://www.mydomain.com/assets/js/import.js
    `);

    return <iframe name="proxy" title="proxy" className="proxy" width="100%" height="100%" src={`http://www.targetdomain.com/proxy.html?${params}`} frameBorder="0" scrolling="no"></iframe>;
}

API

<iframe src="http://www.targetdomain.com/proxy.html?params"></iframe>;

params: {
    origin: 當(dāng)前站點(diǎn)的域名, 使用postMessage方式時(shí)必填, proxy用來校驗(yàn)發(fā)出消息的源域名.
    iframe: 需要內(nèi)嵌的iframe標(biāo)簽字符串,
    includeStyle: 希望添加到iframe頁的css內(nèi)容,
    includeScript: 希望添加到iframe頁的js內(nèi)容,
    importStyle: 希望引入到iframe頁的css資源鏈接, 如果目標(biāo)站點(diǎn)使用安全協(xié)議(https), 資源鏈接使用非安全協(xié)議(http), 該功能會(huì)被瀏覽器禁止.
    importScript: 希望引入到iframe頁的js資源鏈接, 如果目標(biāo)站點(diǎn)使用安全協(xié)議(https), 資源鏈接使用非安全協(xié)議(http), 該功能會(huì)被瀏覽器禁止.
}

注意: 處于安全問題, 默認(rèn)禁用了 includeScript 和 importScript 功能, 如需啟用在proxy.html中將變量 ENABLED_JS_INCLUDE 設(shè)置為 true 即可.

資源

https://github.com/stephenliu1944/cross-domain-iframe-proxy

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:聊城 綏化 金昌 中山 盤錦 阿壩 赤峰 萍鄉(xiāng)

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