码迷,mamicode.com
首页 > 其他好文 > 详细

zbb20171215 bootstrap model 模态框

时间:2018-01-03 11:52:36      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:bootstra   label   bootstrap   标签   his   moved   ade   title   log   

1.页面中添加modal 

<!-- 模态框(Modal) -->
<div class="modal fade" id="showModal" tabindex="-1" role="dialog" 
   aria-labelledby="myModalLabel" aria-hidden="true">
   <div class="modal-dialog" style="width:900px;">
      <div class="modal-content">
//内容动态填充
      </div><!-- /.modal-content -->
</div><!-- /.modal -->
</div>
2.数据格式。页面动态生成a 标签
<a data-toggle=modal‘   data-target=#showModal‘ onclick=targetto("  + row.id + "‘)>"+ row.title+"</a>";


3.单击事件
 function targetto(id){
             $("#showModal").modal({
                 remote: "showAction.action?id="+id
             });
             }


4.每次隐藏时,清除数据。确保点击时,重新加载
    $("#showModal").on("hidden.bs.modal", function() {
        $(this).removeData("bs.modal");
    });
5.

zbb20171215 bootstrap model 模态框

标签:bootstra   label   bootstrap   标签   his   moved   ade   title   log   

原文地址:https://www.cnblogs.com/super-admin/p/8182309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!