首页 > 代码库 > bootstrap modal模态框的运用

bootstrap modal模态框的运用

http://www.ziqiangxuetang.com/bootstrap/bootstrap-modal-plugin.html

方法

下面是一些可与 modal() 一起使用的有用的方法。

方法描述实例
Options: .modal(options)把内容作为模态框激活。接受一个可选的选项对象。
1
2
3
$(‘#identifier‘).modal({
keyboard: false
})
Toggle: .modal(‘toggle‘)手动切换模态框。
1
$(‘#identifier‘).modal(‘toggle‘)
Show: .modal(‘show‘)手动打开模态框。
1
$(‘#identifier‘).modal(‘show‘)
Hide: .modal(‘hide‘)手动隐藏模态框。
1
$(‘#identifier‘).modal(‘hide‘)

bootstrap modal模态框的运用