我无法使用调用外部 php 脚本文件的 fancybox 打开 iframe,这是我用来调用的锚标记
<a id="iframe" href="gallery.php" >Gallery</a>
jQuery(document).ready(function() {
jQuery("#iframe" ).fancybox({
'width' : '75%',
'height' : 885,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
'href' : "gallery.php"
});
});
gallery.php 文件位于同一文件夹 中,调用页面也在 php 上