0

我正在为一个项目使用 Colorbox,它几乎似乎工作得很好。我只是无法让“Iframe”版本工作?我究竟做错了什么?我不能用 iframe 加载 .html 吗?我需要它是 iframe,因为它正在加载时事通讯形式。

            $(document).ready(function(){

            // Display a welcome message on first visit, and set a cookie that expires in 30 days:
            if (document.cookie.indexOf('visited=false') === -1) {
            var expires = new Date();
            expires.setDate(expires.getDate()+30);
            document.cookie = "visited=true; expires="+expires.toUTCString();

            $.colorbox({iframe:true, href:"test.html"})
            }

        });
4

1 回答 1

0

我对这件作品进行了错误的组合:

$.colorbox({iframe:true, href:'test.html'})

它必须如下所示:

$.colorbox({href:'test.html', iframe:true, width:'400px',height:'250px'})

我真的不知道为什么,如果有人想澄清它,欢迎您。我只知道它解决了我的问题。

于 2013-02-04T17:59:06.583 回答