本文介绍了如何添加关闭按钮弹出表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我使用以下代码时,此处未在弹出窗口中显示关闭按钮

when i use below code here is not showing close button in popup

<script type="text/javascript">
       $(document).ready(function() {
           $(".inline1").fancybox({
           'opacity': true,
               'showCloseButton'   : true ,
               'width': 440,
               'height': 220,
               'speedIn': 700,
               'speedOut': 400,
               'transitionIn': 'elastic',
               'transitionOut': 'elastic',
               'type': 'iframe'

           });
       });

   </script>

推荐答案



这篇关于如何添加关闭按钮弹出表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 10:28