bootstrap中模态框、模态框的属性实例详解

这篇文章主要介绍了bootstrap中模态框、模态框的属性实例详解,非常不错,具有参考借鉴价值,需要的朋友可以参考下

工作中有需要用到模态框的可以看看

<div tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false"> <div> <div> <div> <button type="button" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4> 前台菜单管理 </h4> </div> <div> <div> <table> <tr> <th>名称:</th> <td> <input type="text" required="" aria-required="true"> </td> </tr> <tr> <th>动作类型:</th> <td> <select> <option value="view">view</option> <option value="click">click</option> </select> </td> </tr> <tr> <th>路径:</th> <td> <input type="text" required="" aria-required="true" /> </td> </tr> <tr> <th>排序:</th> <td> <input type="text" /> <input type="hidden" value="" /> </td> </tr> </table> </div> </div> <div> <button type="button" data-dismiss="modal">关闭</button> <button type="submit">保存</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div>

其中模态框有个属性可以避免点击遮罩层导致模态框关闭。就是div中设置的 data-backdrop="static"。这样可以避免在模态框中输入内容时突然的误操作导致模态框关闭。

另外还有一个属性:data-keyboard="false"。此举是设置按下ESC退出键无效。同样是为了避免突然的误操作导致模态框关闭。

bootstrap中模态框、模态框的属性实例详解

<div> <button type="button" data-toggle="modal" data-target="#userModal"> <span aria-hidden="true"></span>新增 </button> <button type="button"> <span aria-hidden="true"></span>修改 </button> <button type="button"> <span aria-hidden="true"></span>删除 </button> </div>

其中按钮属性 data-toggle="modal" data-target="#userModal" 是打开模态框。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwzppx.html