我目前正在使用fancybox 打开一个包含php 联系表单的iframe 的网站。
一切正常,除了联系 php 表单不会使用整个 iframe。
我已将大小设置为 800 像素 x 600 像素,并且联系人 php 上的 div 设置为 800x600。
当显示在 iframe 中时,它们以大约 150x70px 滚动这是我的脚本代码;
$(document).ready(function() {
$(".fancybox-iframe").fancybox({
herf : 'contact/index.html',
type : 'iframe',
margin : 0,
padding : 0,
width : 800,
height : 600,
fitToView : false,
autoSize : false,
closeClick : 'false',
openEffect : 'elastic',
closeEffect : 'elastic',
openSpeed : 'slow'
});
});