bootstrap弹窗里面再弹窗

来源:互联网 发布:python教程3.6.2 编辑:程序博客网 时间:2024/06/14 04:24
开发一个小功能,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
原创粉丝点击