我正在尝试阻止fancybox窗口在用户点击外部时关闭 fancybox窗口。我在IE7上使用fancybox版本:1.3.1,我尝试了以下但我还没有成功。非常感谢任何帮助。
jquery fancybox - prevent close on click outside of fancybox
我的代码:
<script type="text/javascript">
$(document).ready(function() {
$("a.fancybox").fancybox({
'width' : '68%',
'height' : '80%',
'autoScale' : true,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
});
</script>
谢谢