标签:其他 attr 设备 元素 man sam 重叠 body 需要
模态框经过了优化,更加灵活,以弹出对话框的形式出现,具有最小和最实用的功能集。
千万不要在一个模态框上重叠另一个模态框。要想同时支持多个模态框,需要自己写额外的代码来实现。
务必将模态框的 HTML 代码放在文档的最高层级内(也就是说,尽量作为 body 标签的直接子元素),以避免其他组件影响模态框的展现和/或功能。
Due to how HTML5 defines its semantics, the autofocus
HTML attribute has no effect in Bootstrap modals. To achieve the same effect, use some custom JavaScript:
$(‘#myModal‘).on(‘shown.bs.modal‘, function () {
$(‘#myInput‘).focus()
})
以下模态框包含了模态框的头、体和一组放置于底部的按钮。
标签:其他 attr 设备 元素 man sam 重叠 body 需要
原文地址:http://www.cnblogs.com/langwo/p/7102578.html