溫馨提示×

溫馨提示×

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

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

用document.activeElement解決iframe跨域問題

發(fā)布時間:2020-07-24 11:56:59 來源:網(wǎng)絡(luò) 閱讀:2642 作者:maweiblue 欄目:web開發(fā)

iframe里面一般都會使用別人的URL,沒有很多交互,使用document.activeElement可以對iframe進行事件監(jiān)聽。
使用下面的類進行測試:


 var IframeOnClick = {
        resolution: 200,
        iframes: [],
        interval: null,
        Iframe: function() {
            this.element = arguments[0];
            this.cb = arguments[1];
            this.hasTracked = false;
        },
        track: function(element, cb) {
            this.iframes.push(new this.Iframe(element, cb));
            if (!this.interval) {
                var _this = this;
                this.interval = setInterval(function() { _this.checkClick(); }, this.resolution);
            }
        },
        checkClick: function() {
            if (document.activeElement) {
                var activeElement = document.activeElement;
                for (var i in this.iframes) {
                    if (activeElement === this.iframes[i].element) { // user is in this Iframe
                            this.iframes[i].cb.apply(window, []);
                    }
                }
            }
        }
    };

            var index = layer.open({
            type: 2,
            content: 'http://layim.layui.com',
            area: ['320px', '195px'],
            maxmin: true,
            success:function (layero,index) {
                var iframeWin = window[layero.find('iframe')[0]['name']];
                IframeOnClick.track(layero.find('iframe')[0], function() { console.log("testtttt") });
            }
        });
        layer.full(index);
向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI