是否可以在fancybox模式中打开外部域?不能使用iframe

时间:2015-02-05 20:42:27

标签: jquery fancybox

是否可以在fancybox模式中打开外部域?不能使用iframe。 我的问题是我有2个域指向同一目录:

http://www.elanartists.com/kitty_carmichael/

http://www.kittycarmichaelmusic.com

“视频”链接指向第一个域

这可以在它自己的域中运行但返回“无法加载请求的内容。请稍后再试。”在第二个域中尝试时出错。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

由于存在安全问题,它无法正常工作。另一种解决方案是,如果您可以使用PHP来获取页面内容,那么您可以解析所需的内容等,并以模态或您希望的方式在您的站点中显示该内容。 PHP代码:

<?php
    $url = 'http://stackoverflow.com/';
    echo file_get_contents($url);
    //or place the contents into a variable to parse
    $contents = file_get_contents($url);
?>