modal(Bootstrap 模态框)打开方式之一

 1 $('#id').click(function(){
 2     var url='***.htm';
 3     $.get(url,function(data){
 4          $('div class="modal hide fade" id="closemodalogue">'  + data + '</div>').modal({
 5                 backdrop:true,
 6                 keyboard:true
 7         }).css({
 8                 width:'800px','margin-top':'-40px':function(){
 9                         return -($(this).width()/2);
10                 }
11         });
12     });
13 });

 

posted @ 2018-03-28 15:46  wisdomns  Views(493)  Comments(0Edit  收藏  举报