0

这工作正常

        function openContent (id) {
            $.fancybox('<h1>Lorem lipsum</h1>');
        }

但是当我尝试打开 iframe 时,什么也没有发生

        function openContent (id) {
            $.fancybox.open({href:'http://www.google.com'});
        }

firebug 或 chrome 控制台中没有错误消息。我正在尝试在本地主机中。

任何想法?

4

1 回答 1

1
 X-Frame-Options:SAMEORIGIN

标头在 www.google.com 中设置,如果您的网站不在 google.com 中,则无法在 iframe 中打开 www.google.com。

于 2013-06-26T14:05:43.210 回答