如何获取fancybox中的数据

发布于 2024-10-18 00:16:14 字数 724 浏览 1 评论 0原文

$("a#selectUser").fancybox(
        {
        'autoDimensions'    : false,
        'width'             : 680,
        'height'            : 495,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'centerOnScroll'    : true,
        'title'             : 'Select User',
        'titleShow'         : 'true',
        'titlePosition'     : 'over',
        'hideOnOverlayClick':false,
        'hideOnContentClick':false,


        'onComplete': function() {
            $("#fancybox-title").css({'top':'0px', 'bottom':'auto','margin-left':'0px','margin-top': '-25px','width': 'px'});
        }




    });

它将打开新的模式。我在这里选择用户。现在我想在关闭模态后执行此操作,我应该能够获取已检查的数据..请帮助我...

$("a#selectUser").fancybox(
        {
        'autoDimensions'    : false,
        'width'             : 680,
        'height'            : 495,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'centerOnScroll'    : true,
        'title'             : 'Select User',
        'titleShow'         : 'true',
        'titlePosition'     : 'over',
        'hideOnOverlayClick':false,
        'hideOnContentClick':false,


        'onComplete': function() {
            $("#fancybox-title").css({'top':'0px', 'bottom':'auto','margin-left':'0px','margin-top': '-25px','width': 'px'});
        }




    });

it will open new modal. Here i am selecting the user . now i want do that after closing modal i should able to get that data which are checked.. please help me ...

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

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

发布评论

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

评论(1

放血 2024-10-25 00:16:14
'onClosed'      : function() {
    // your code, example
    var value = $('.input_checkbox:checked').val();
    // and so on
}
'onClosed'      : function() {
    // your code, example
    var value = $('.input_checkbox:checked').val();
    // and so on
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文