$("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'});
}
});
它会打开新的模态。我在这里选择用户。现在我想在关闭模态后做到这一点我应该能够获得被检查的数据..请帮助我...
答案 0 :(得分:0)
'onClosed' : function() {
// your code, example
var value = $('.input_checkbox:checked').val();
// and so on
}