IFRAME动态加载触发onload事件(转)

原文地址:http://blog.ops.cc/webtech/javascript/f5nhm.html

 

<body>

    <script>var iframe = document.createElement("IFRAME");

        document.body.appendChild(iframe);

        iframe.src = "http://www.ops.cc";



        if (iframe.attachEvent) {

            iframe.attachEvent("onload", function () {

                alert("Local iframe is now loaded.");

            });

        } else {

            iframe.onload = function () {

                alert("Local iframe is now loaded.");

            };

        }

    </script>

</body>

 

posted @ 2015-02-16 16:17  高山-景行  阅读(1330)  评论(0编辑  收藏  举报