91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在跨域中修改iframe頁面內容

發布時間:2022-03-01 10:15:09 來源:億速云 閱讀:567 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“怎么在跨域中修改iframe頁面內容”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么在跨域中修改iframe頁面內容”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

原理

主站點內嵌代理頁面, 并向代理頁傳遞數據, 代理頁根據主站點的數據對目標頁的DOM進行操作.由于代理頁與目標頁同域, 所以代理頁可以獲取并操作目標頁的document對象.

前提條件

需要將proxy.html放到與內嵌的iframe頁同域的服務下, 并且可以被訪問到.

使用

支持2種調用方式: 使用 postMessage 和 URL params.

postMessage

該方法需要使用 JSON.stringify 將對象轉為字符串.

// 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" ></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

該方法需要將傳遞的內容用 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" ></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: 當前站點的域名, 使用postMessage方式時必填, proxy用來校驗發出消息的源域名.
    iframe: 需要內嵌的iframe標簽字符串,
    includeStyle: 希望添加到iframe頁的css內容,
    includeScript: 希望添加到iframe頁的js內容,
    importStyle: 希望引入到iframe頁的css資源鏈接, 如果目標站點使用安全協議(https), 資源鏈接使用非安全協議(http), 該功能會被瀏覽器禁止.
    importScript: 希望引入到iframe頁的js資源鏈接, 如果目標站點使用安全協議(https), 資源鏈接使用非安全協議(http), 該功能會被瀏覽器禁止.
}

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

讀到這里,這篇“怎么在跨域中修改iframe頁面內容”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

葵青区| 桑植县| 仲巴县| 仁寿县| 竹北市| 屏南县| 土默特右旗| 徐水县| 石柱| 合作市| 体育| 任丘市| 仁怀市| 石屏县| 仙游县| 盘山县| 巴楚县| 明光市| 靖远县| 元谋县| 大城县| 江阴市| 达孜县| 林西县| 婺源县| 资阳市| 嘉峪关市| 额济纳旗| 松阳县| 滕州市| 逊克县| 丹寨县| 临湘市| 安远县| 新干县| 阿鲁科尔沁旗| 永顺县| 湖口县| 平度市| 永济市| 靖州|