Bootstrap 模态对话框只加载一次 remote 数据的解决办法

前端框架 Bootstrap 的模态对话框,可以使用 remote 选项指定一个 URL,这样对话框在第一次弹出的时候就会自动从这个地址加载数据到 .modal-body 中,但是它只会加载一次,不过通过在事件中调用 removeData() 方法可以解决这个问题。

 

1. Bootstrap 模态对话框和简单使用

1
2
3
4
5
6
7
8
9
10
11
12
13
< div  id = "myModal"  class = "modal hide fade" >
     < div  class = "modal-header" >
         < button  type = "button"  class = "close"  data-dismiss = "modal" >x</ button >
         < h3 >对话框标题</ h3 >
     </ div >
     < div  class = "modal-body" >
         < p >对话框主体</ p >
     </ div >
     < div  class = "modal-footer" >
         < a  href = "#"  class = "btn"  data-dismiss = "modal" >取消</ a >
         < a  href = "#"  class = "btn btn-primary"  data-dismiss = "modal" >确定</ a >
     </ div >
</ div >

 

显示效果与下图相似:

可以使用按钮或链接直接调用模态对话框,这是简单的用法:

1
2
< button  type = "button"  data-toggle = "modal"  data-target = "#myModal" >打开对话框</ button >
< a  href = "#myModal"  role = "button"  class = "btn"  data-toggle = "modal" >打开对话框</ button >

 

这样只能把静态内容在对话框中显示出来,使用对话框的 remote 选项可以实现更强大的效果。

2. 使用 remote 选项让模态对话框加载页面到 .modal-body 中

有两种方法,一种是使用链接,另一种就是使用脚本。

2.1 使用链接

1
< a  href = "page.jsp"  data-toggle = "modal"  data-target = "#myModal" >打开对话框</ a >

 

当点击此链接时,page.jsp 的内容会被加载到对话框的 .modal-body 中,随即显示对话框。

2.2 使用脚本

1
2
3
$( "#myModal" ).modal({
     remote:  "page.jsp"
});

 

这段脚本的效果和使用链接是一样的,当这段脚本执行后,page.jsp 的内容会被加载到对话框的 .modal-body 中,随即显示对话框。

这两种方法的背后,都是 Bootstrap 调用了 jQuery 的 load() 方法,从服务器端加载了 page.jsp 页面。但这个加载只会发生一次,后面不管你点击几次链接,或者执行几次脚本,哪怕改变传递给 remote 选项的值,对话框都不会重新加载页面,这真是个让人头疼的事情。不过问题还是能够解决的。

3. 移除数据,让对话框能够在每次打开时重新加载页面

在搜索并查阅了相关文档后,发现在对话框的 hidden 事件里写上一条语句就可以了:

1
2
3
$( "#myModal" ).on( "hidden" function () {
     $( this ).removeData( "modal" );
});

 

也可以在每次打开对话框之前移除数据,效果是一样的。

注:上面的代码基于 Bootstrap v2,如果使用 Bootstrape v3,模态对话框的 HTML 和事件的写法有一些不同,例如对于上面的 hidden 事件,要写成:

1
2
3
$( "#myModal" ).on( "hidden.bs.modal" function () {
     $( this ).removeData( "bs.modal" );
});
 
http://my.oschina.net/qczhang/blog/190215?p=1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值