我想在smarty / php中使用bootstrap创建网格
在网格我有名字,家庭,...& 修改按钮。
当我点击btn编辑时,模态弹出窗口打开,但我不知道如何发送记录ID 来设置查询&以模态显示:
示例代码:
www.bootply.com/webdeveloper/iQrK1Yxlkk
BTN:
<a href="" class="btn btn-success" data-toggle="modal" data-target="#myModal" data-backdrop="static">
Edit User
</a>
模态:
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
username: ...
<br>
Password: ...
<br>
avatar: ...
<br>
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
答案 0 :(得分:0)
最简单的解决方案:
data-toggle="modal"
和data-target="#myModal"
data-id
a
属性
click
a
$('#myModal').modal()
希望它会有所帮助
修改强>
另外在文档中我看到模态运行时的特殊事件(可能是更多bootstrap.js方式......):
$('#myModal').on('show.bs.modal', function (e) {
// get record ID here
})
因此您可以使用e.target获取标记a