`
wsdtq123
  • 浏览: 46697 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类

bootstrap弹窗里面再弹窗

阅读更多
开发一个小功能,90%的时间都耗在前台bootstrap弹窗上了,功能需要在弹窗里面再弹窗,浏览器console报错:Uncaught RangeError: Maximum call stack size exceeded,导致页面上一些奇怪的错误。
最后终于发现这也许是bootstrap多层弹窗导致的。搜了一下果然如此,我用了最简单的方式来解决,注释了bootstrap.min.js的这一句代码即可。
enforceFocus:function(){
  var t=this;
  e(document).on("focusin.modal",function(e){
    t.$element[0]!==e.target&&!t.$element.has(e.target).length/*多层弹窗死循环&&t.$element.focus()*/})
},
escape:function(){...}


参考资料:https://github.com/twbs/bootstrap/pull/5022
https://github.com/twbs/bootstrap/issues/4781
http://www.oschina.net/question/723876_121004
http://www.oschina.net/code/snippet_181985_39014
0
1
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics