keyboard:false, backdrop:"static" 没起作用?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <!DOCTYPE html> < html > < head > < meta charset = "utf-8" > < title >JavaScript触发时的参数设置(二)</ title > < link rel = "stylesheet" href = "//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" > </ head > < body > < button class = "btn btn-primary" type = "button" >点击我</ button > < div class = "modal" id = "mymodal" tabindex = "-1" > < div class = "modal-dialog" > < div class = "modal-content" > < div class = "modal-header" > < button type = "button" class = "close" data-dismiss = "modal" >< span aria-hidden = "true" >×</ span >< span class = "sr-only" >Close</ span ></ button > < h4 class = "modal-title" >模态弹出窗标题</ h4 > </ div > < div class = "modal-body" > < p >模态弹出窗主体内容</ p > </ div > < div class = "modal-footer" > < button type = "button" class = "btn btn-default" data-dismiss = "modal" >关闭</ button > < button type = "button" class = "btn btn-primary" >保存</ button > </ div > </ div > <!-- /.modal-content --> </ div > <!-- /.modal-dialog --> </ div > <!-- /.modal --> < script src = "http://libs.baidu.com/jquery/1.9.0/jquery.js" ></ script > < script src = "//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" ></ script > < script > $(function(){ $(".btn").click(function(){ $("#mymodal").modal("toggle"); }); }); $(function(){ $(".btn").click(function(){ $("#mymodal").modal({ keyboard:false, backdrop:"static" }); }); }); </ script > </ body > </ html > |