我需要从iframe中获取一个画廊。我的代码部分工作,它可以很好地打开图片,但我无法转到下一张或上一张图片!
在父页面中,我获得了jquery.fancybox.js和.css文件。 2.1.4
在iframe中我还有两个fancybox文件和这段代码:
<script type="text/javascript">
/* <![CDATA[ */
jQuery(document).ready(function($) {
jQuery('.outside').click(function(e){
e.preventDefault();
parent.jQuery.fancybox({
href: this.href,
helpers: {
overlay: {
opacity: 0.9
} // overlay
} // helpers
}); // fancybox
}); // click
}); // ready
/* ]]> */
</script>
<a href="typo3temp/GB/d1089305a1.jpg" title="title 1" class="outside" rel="group1" data-fancybox-group="gallery"><img src="typo3temp/GB/c5dc7e3cf5.jpg" width="145" height="145" border="0" alt="" /></a>
<a href="typo3temp/GB/1528727a6d.jpg" title="title 2" class="outside" rel="group1" data-fancybox-group="gallery"><img src="typo3temp/GB/dc17413b29.jpg" width="145" height="145" border="0" alt="" /></a>
我处于noconflict模式
有什么想法吗?提前致谢