jQuery fancybox onClosed 奇怪的行为

发布于 2024-11-03 03:09:53 字数 885 浏览 0 评论 0原文

有人可以看看我下面的脚本并告诉我为什么我的 fancybox 表现得如此奇怪吗?我有一个表单,当精美的框关闭时,它应该清除表单数据并折叠结果所在的 div。它可以工作 7/10 次?怎么会发生这种事?实际的功能发生在 fancybox 重新打开后的第二个,而不是实际上关闭时,

我被难住了

<script>
$(document).ready(function() {
        $('#login,#login2,#contactBox,#contactBox2').fancybox({
            'overlayColor'      : '#000',
            'titlePosition'     : 'inside',
            'transitionIn'      : 'elastic',
            'transitionOut'     : 'elastic',
            'easingIn'          : 'easeOutExpo',
            'easingOut'         : 'easeInExpo',
            'speedIn'           : 600, 
            'speedOut'          : 200,
            'onClosed'          : function() {
                        $('#sub_cont').hide(250, function() {
                        $('#IDsearchform input').val('');
                     });
            }
        });
});
</script>

Can someone look at my script below and tell me why my fancybox is behaving so weird? I have a form that when the fancy box closes it should clear the form data and collapse the div that the results were in. It works 7/10 times?? how could this happen? and the actual function takes place the second after the fancybox is reopened, not actually on close

I'm stumped

<script>
$(document).ready(function() {
        $('#login,#login2,#contactBox,#contactBox2').fancybox({
            'overlayColor'      : '#000',
            'titlePosition'     : 'inside',
            'transitionIn'      : 'elastic',
            'transitionOut'     : 'elastic',
            'easingIn'          : 'easeOutExpo',
            'easingOut'         : 'easeInExpo',
            'speedIn'           : 600, 
            'speedOut'          : 200,
            'onClosed'          : function() {
                        $('#sub_cont').hide(250, function() {
                        $('#IDsearchform input').val('');
                     });
            }
        });
});
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦魇绽荼蘼 2024-11-10 03:09:53

我已经尝试过您发布的脚本,当我实现链接(触发 fancybox)、清除内容的简单输入和要隐藏的 div 时,它似乎对我有用。然而,我不得不删除缓动选项,因为它们在 jquery 中增加了错误 - 这会是一个问题吗?如果您发布不适合您的完整/最小代码,我可以看一下。
K

I have tried the script you posted and it seems to work for me when I implemented the link (firing a fancybox), a simple input toclear the content and a div to hide. However I had to remove the easing options since they were rising errors in the jquery - could that be a problem?. if you post the full/minimal code which does not work for you I can have a look.
K

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文