bootstrap中弹出层model的用法

1.model.html代码如下

<div class="modal fade hide" id="modal" data-cache='false' data-backdrop="true" data-keyboard="true" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 id="myModaltopname"></h4>
  </div>
  <div class="modal-body">
    <label><i class="icon-refresh"></i></label>
  </div>

  <div class="modal-footer">
   </div>
</div>

2.所点击的标签为 <a href="{:U('Index/Model/person')}" id="{$vo['SubjectID']}" data-href="" class="get_model_name" name="人事户头(主管部门)" data-target="#modal"   data-toggle="modal"   >弹出model</a>


3.person.html中的代码为

{__NOLAYOUT__}
我是model的body
           


4.解析在a标签中href属性为通过控制器渲染的model中的body部分,这个部分为另一个页面加载进来的也就是person.html其中{__NOLAYOUT__}为关闭模版布局


你可能感兴趣的:(bootstrap中弹出层model的用法)