使用Fancybox 1.2.6和JQuery 1.2.6,
代码:
<script type="text/javascript">
$(document).ready(function() {
$("a.iframe").fancybox({
'width' : 300,
'height' : 200,
'type' : 'iframe',
'autoScale' : false,
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'speedIn' : 600,
'speedOut' : 200,
'showCloseButton' : false,
'titleShow' : false
});
});
</script>
<a class="iframe" id="iframe" href="test.html">iframe</a>
这里我无法修复窗口的高度和宽度。下面我附上了我的输出图像。有没有办法来修正高度和宽度?
答案 0 :(得分:1)