5

示例代码:

<!DOCTYPE html>
<html>
<head>
<title></title>
<script>
function on_iframe_load() {
    document.getElementById('iframe_a').onload = function() {
        alert('Thanks for the visit!');
    };
}
</script>
</head>
<body>
<iframe name="iframe_a" id="iframe_a"></iframe>
<a href="http://www.example.com/" target="iframe_a" onclick="on_iframe_load();">Go!</a>
</body>
</html>

它可以在所有主要浏览器中正常运行,但 IE8(可能还有以前的版本)不理解它。

更新:刚刚想出了一个解决方案,但我不确定它是否是正确的编码。请查阅:

<!DOCTYPE html>
<html>

    <head>
        <title></title>
        <script>
            var clicked = false;

            function activate() {
                clicked = true;
            }

            function pop() {
                if (clicked) {
                    alert('Thanks for the visit!');
                };
            }
        </script>
    </head>

    <body>
        <iframe name="iframe_a" onload="pop();"></iframe>
        <a href="http://www.example.com/" target="iframe_a" onclick="activate();">Go!</a>

    </body>

</html>
4

4 回答 4

4

在 iframe 上使用内联属性似乎可以解决 IE8 中的这个问题:

<!DOCTYPE html>
<html>
<head>
<title></title>
<script>
function onIframeLoad(iframe) {
    if(iframe.src) {
        alert('Thanks for the visit!');
    }
}
function onLinkClick(url) {
    document.getElementById('iframe_a').src = url;
}
</script>
</head>
<body>
<iframe id="iframe_a" onload="onIframeLoad(this);"></iframe>
<a href="http://www.example.com/" onclick="onLinkClick(this); return false;">Go!</a>
</body>
</html>

按要求更新:

您应该尝试编写更不显眼的 javascript。以这种方式编写代码可能会阻止您在 IE 中出现这种奇怪的错误。

<!DOCTYPE html>
<html>
<body>
    <iframe id="display-frame"></iframe>
    <a href="http://www.example.com/">Go!</a>
    <script>
        window.onload = function() {
            var iframe = document.getElementById('display-frame'),
                link = document.getElementsByTagName('a')[0];

            // load handler
            function onIframeLoad() {
                alert('Thanks for the visit!');
            }

            // event handlers
            if(iframe.addEventListener) iframe.addEventListener('load', onIframeLoad, false);
            else if(iframe.attachEvent) iframe.attachEvent('onload', onIframeLoad);

            link.onclick = function() {
                iframe.src = this.href;
                return false;
            }
        };
    </script>
</body>
</html>
于 2012-10-16T09:46:48.907 回答
2

只需使用 jquery:

$(iframe).bind( 'load', function(){} );
于 2013-11-06T11:58:00.790 回答
2

页面加载后,您似乎无法使用 DOM 属性向 IE 中的 iFrame 添加负载侦听器。

但是你可以使用attachEvent,所以:

function on_iframe_load() {
    function foo() {
        alert('Thanks for the visit!');
    };
    var el = document.getElementById('iframe_a');

    if (el.attachEvent) {
      el.attachEvent('onload',foo);
    } else if (el.addEventListener) {
      el.addEventListener('load', 'foo', false);
    }
}

我在 IE 6 中进行测试并颠倒了通常的测试顺序,以便attachEvent优先使用addEventListener. 您可能想要测试更新版本的 IE 以查看相反的顺序是否有效,并测试其他类似 IE 的浏览器,例如 Opera。

编辑

测试后修改代码(我傻)以使用addEventListener. 这是适用于 IE 和其他的东西:

function on_iframe_load() {
    function foo() {
        alert('Thanks for the visit!');
    };
    var el = document.getElementById('iframe_a');

    if (el.attachEvent) {
      el.attachEvent('onload',foo);

    } else {
      el.onload = foo;
    }
}

如果您在标记中使用 onload 属性,则无需使用脚本添加侦听器。

于 2012-10-16T09:41:29.833 回答
2

有用 :)

在 IE8、ff、chrome 上测试

var iframe = document.getElementById('iframeid');

    if (iframe .attachEvent) {
      iframe .attachEvent('onload',alert("IE Iframe loaded"));

    } else {
      iframe .onload = alert("Other than IE Iframe loaded");
    }
于 2013-01-29T07:07:22.283 回答