这篇文章主要为大家详细介绍了Bootstrap modal使用及点击外部不消失的解决方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Bootstrap modal使用及点击外部不消失的解决方法,供大家参考,具体内容如下
1.代码:
1
2
3
4
5
6
7
8
|
<
input
id
=
"btntext"
type
=
"button"
value
=
"添加文本组件"
data-toggle
=
"modal"
data-target
=
"#myModal"
href
=
"../SysManage/ZuJianManage.aspx"
/>
<
div
class
=
"modal hide fade"
id
=
"myModal"
tabindex
=
"-1"
role
=
"dialog"
>
<
div
class
=
"modal-header"
><
button
class
=
"close"
type
=
"button"
data-dismiss
=
"modal"
>×</
button
>
<
h3
id
=
"myModalLabel"
>Modal header</
h3
>
</
div
>
<
div
class
=
"modal-body"
></
div
>
</
div
>
|
当然你也可以用js来控制。
如下代码:
显示:$('#myModal').modal('show');
隐藏:$('#myModal').modal('hide');
开关:$('#myModal').modal('toogle');
事件: $('#myModal').on('hidden', function () {// do something…});
注意:我这边用到了href属性,这是让modal去 remote一个url。当然 ,你可以把你要的内容,直接写在modal-body里面。
认真看modal的div结构,你就会明白,modal-body是代表内容,modal-header是头部,那么如果要在底部加两个按钮,那么就得用下面的代码了。
1
2
3
4
|
<
div
class
=
"modal-footer"
>
<
a
href
=
"#"
class
=
"btn"
>关闭</
a
>
<
a
href
=
"#"
class
=
"btn btn-primary"
>保存</
a
>
</
div
>
|
注意:如果要给modal设置宽度,那必须得加上布局。就是把modal放在下面的代码块中,并且设置modal的宽度。style="width:500px".对了,你还不可以用span样式直接放到class里面。
<div class="container"></div>
如果要使弹出框点击外部不消失,在触发模态框的组件上添加以下属性 data-backdrop="static"
1
2
3
4
5
6
7
8
|
<
div
class
=
"modal hide fade"
id
=
"myModal"
tabindex
=
"-1"
role
=
"dialog"
<span
style
=
"font-family: arial, 宋体, sans-serif, tahoma, 'Microsoft YaHei'; font-size: 14px; line-height: 24px;"
>
<
span
style
=
"color:#ff6666;"
>data-backdrop="static"</
span
>
</
span
>>
</
div
>
|
|