我遇到了一个关于下拉菜单在我一直在苦苦挣扎一周的移动设备上不起作用的问题。我从引导站点获取了当前示例的副本,对其进行了一些修改,在测试期间我注意到它没有按预期工作。(原始示例也是如此(http://twitter.github.io/bootstrap/examples/carousel.html),我只添加了一个指向例如google的链接) - 为什么会出现这种行为?
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="#">Dropdown test</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Links<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="http://www.google.com" target="blank">Google (opens in new window)</a></li>
<li><a href="http://www.bing.com" target="blank">Bing (opens in new window)</a></li>
<li><a class="linkcheck" href="http://www.google.com">Google</a></li>
<li><a class="linkcheck" href="http://www.bing.com">Bing</a></li>
</ul>
</li><!-- .dropdown -->
</ul><!-- .nav -->
</div><!-- .nav-collapse -->
</div><!-- .container -->
</div><!-- .navbar-inner -->
</div><!-- .navbar -->
Bootstrap 对我来说是新的,我找不到任何关于 nav-collapse 的文档,我在哪里可以找到这个?我真的必须做一个点击事件,然后是window.open(url)吗?(或者 onclick 在移动设备上的行为是否不同?)
这是我的在线示例:http ://test-web.dk/sandbox/bootstrap/
编辑:找到解决方案:
$('.linkcheck', this).click(function(){
var url = $(this).attr('href');
alert("link clicked:" + url);
if(url.match(/^http:/)) {
window.location.href = url;
}
});
// fix by RobDodson: github.com/twitter/bootstrap/issues/4550
// Kills regular links in browsers though, but they will be redirected by linkcheck above
$('.dropdown a').click(function(e) {
e.preventDefault();
setTimeout($.proxy(function() {
if ('ontouchstart' in document.documentElement) {
$(this).siblings('.dropdown-backdrop').off().remove();
}
}, this), 0);
});
尽管如此,一个真正的引导解决方案还是很高兴知道的,而不是一个 hack :-) 所以如果有人有建议,请发表。