如何在fancybox中获取数据

时间:2011-02-17 09:59:35

标签: php jquery fancybox

$("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'});
        }




    });

它会打开新的模态。我在这里选择用户。现在我想在关闭模态后做到这一点我应该能够获得被检查的数据..请帮助我...

1 个答案:

答案 0 :(得分:0)

'onClosed'      : function() {
    // your code, example
    var value = $('.input_checkbox:checked').val();
    // and so on
}