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

解决bootstrap中modal Esc键不生效问题

时间:2015-03-08 17:06:05      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

bootstrap为我们提供了很多方便的页面控件,modal就是其中之一。很多人在使用modal时遇到了esc键按下无法关闭的问题,即使显式传入keyboard选项也不生效。

$(‘#editFormItemModal‘).modal({show:true, keyboard:true});

此问题在2.1以后版本出现,要解决这个问题也很简单,modal所在div添加一个tabindex属性即可:

<div class="fade modal" tabindex="-1">

------

参看:

https://github.com/twbs/bootstrap/issues/4663

解决bootstrap中modal Esc键不生效问题

标签:

原文地址:http://www.cnblogs.com/kanzume/p/4321883.html

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