Twitter Bootstrap折叠导航栏按钮打开新选项卡而不是菜单

时间:2014-05-29 16:57:46

标签: twitter-bootstrap

无法在其他任何地方找到此问题作为错误,所以寻求一些帮助。

http://seontario.org/处于较低断点时,菜单按钮会显示。该按钮应该打开下面的折叠菜单,而是打开一个新的空白选项卡。对于我的生活,我无法弄清楚原因。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我在你的main.js第53行找到了问题

$('a').each(function() {
   var a = new RegExp('/' + window.location.host + '/');
   if(!a.test(this.href)) {
       $(this).click(function(event) {
           event.preventDefault();
           event.stopPropagation();
           window.open(this.href, '_blank');
       });
   }
});

以防止崩溃切换