bootstarp modal自动调整宽度的JS代码

$modal.modal({
    backdrop : 'static'
}).css({  
    width: 'auto',  
    'margin-left': function () {  
         return -($(this).width() / 2);  
    }  
});  ;


你可能感兴趣的:(bootstarp modal自动调整宽度的JS代码)