1

我正在尝试从 iframe 调用 colorbox close() 函数。这就是我所拥有的。

主页

    <script>
        $(document).ready(function(){
            $("#click").colorbox({width:"60%",
                        height:"60%",
                        iframe:true

            });
        });
    </script>

     <a href="login.html" id="click">Click Me!</a>

登录.html

     <!DOCTYPE html>
     <html>
          <head>
         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
          <script src="jquery.colorbox.js"></script>
    <script>
        $(document).ready(function(){
            setTimeout(function() {
                parent.jQuery.fn.colorbox.close();
            }, 3000);
        });
    </script>
    </head><body></body>
</html>

调用 settimeout 时出现此错误。

未捕获的类型错误:无法读取未定义的属性“fn”

我试图按照这个线程中的答案。 如何关闭 iframe 中的颜色框?

4

1 回答 1

4

我们可以用

parent.jQuery.fn.colorbox.close();

它工作正常

于 2015-03-08T15:40:17.040 回答