bootstrap Maximum call stack size exceeded

来源:互联网 发布:网络保险中介会倒闭吗 编辑:程序博客网 时间:2024/06/05 09:28

原文名称为:

bootstrap弹窗里面再弹窗

开发一个小功能,90%的时间都耗在前台bootstrap弹窗上了,功能需要在弹窗里面再弹窗,浏览器console报错:Uncaught RangeError: Maximum call stack size exceeded,导致页面上一些奇怪的错误。 
最后终于发现这也许是bootstrap多层弹窗导致的。搜了一下果然如此,我用了最简单的方式来解决,注释了bootstrap.min.js的这一句代码即可。 

Java代码  收藏代码
  1. enforceFocus:function(){  
  2.   var t=this;  
  3.   e(document).on("focusin.modal",function(e){  
  4.     t.$element[0]!==e.target&&!t.$element.has(e.target).length/*多层弹窗死循环&&t.$element.focus()*/})  
  5. },  
  6. 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 

原创粉丝点击