Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用引导程序的模态
一个非常好的实用程序,但不幸的是“全选”不适用于 IE7/8/9,无论是从菜单还是ctrl+a按键序列。
为什么?我该如何启用它?还是值得麻烦?
这与Modal插件如何强制关注 modal 元素有关。您可以使用以下代码段禁用焦点锁定。
$('body').on('shown', '.modal', function () { $(document).off('focusin.modal') })
注意:您可以将侦听器附加到元素以外的其他东西上<body>,特别是如果您不需要对所有模态进行此行为。
<body>
我至少已经确认运行它会在旧版 IE 中重新启用Ctrl+ 。a