随着的fancybox(V2),我怎么可以创建一个独特的网址,一旦负载,显示与IFRAME内容的fancybox。 我把它与联内容(例如:www.mysite.com/index.html#idgoeshere)伟大的工作,但不知道是什么网址或JS应以加载的fancybox遏制,并在其中,具体的iframe或ajax.txt页面。
我想实现,是要像一个链接:
www.mysite.com/index.html#iframe.html
加载的索引页,以打开的fancybox窗口,并加载到的fancybox窗口Iframe.html的页面(或者它可以是通过AJAX装入了.txt文件)。
HTML
<a class="fancybox fancybox.iframe" href="iframe.html">Iframe</a>
的fancybox
<script>
$(document).ready(function($) {
$.fancybox({
content: $(window.location.hash).html()
});
$('.fancybox').fancybox();
});
</script>
感谢您的任何帮助或指导。
凯尔
更新
感谢大家的帮助! 以下是最终为我工作的伟大。 我救了我们我的内容转换成单独的HTML文件,然后叫他们fancybox.iframe
JS:
<script>
$(document).ready(function () {
$('.fancybox').fancybox({
'scrolling' : 'no'
});
if (window.location.hash !== "") {
$(window.location.hash).click();
}
});
</script>