我正在使用 Bootstrap 的 vanilla 版本,并尝试为 friend 创建一个通用模板,以便在他们的所有网站上使用。我之前使用过 Bootstrap 没有任何问题,但现在遇到了问题。澄清一下:据我所知,我根本没有更改 Bootstrap js 或 css 代码。
问题是导航栏中的链接不可点击。
HTML 开头
<head>
<title>Comic Title - Update Schedule</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<? require "walrus.php"; ?>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
$('.navbar-nav a[href]').click(function (e) { e.preventDefault(); });
});
</script>
<style>
.affix {
top: 0;
width: 100%;
}
.affix + .container-fluid {
padding-top: 70px;
}
</style>
</head>
<body>
<div class="container-fluid" style="background-color:#00FF00;color:#fff;height:150px;">
<h1>Example Header</h1>
<h3>You'll probably want a cool image here.</h3>
</div>
<nav class="navbar navbar-default" data-spy="affix" data-offset-top="150" style="z-index: 1001;">
<ul class="nav navbar-nav">
<li><a class="link" href="#">Home</a></li>
<li><a class="link" href="http://www.google.com">About</a></li>
<li><a class="link" href="http://www.google.com">Characters</a></li>
<li><a class="link" href="page.php?p=archive">Archive</a></li>
</ul>
</nav>
我看过但没有工作的帖子(或不是永久解决方案):
1 和 2 。
最佳答案
您的 HTML 中的脚本阻止了链接可点击。
默认情况下, anchor 标记是可点击的,但是您的 jQuery 函数正在使用事件方法 preventDefault,它完全按照它所说的去做,阻止 anchor 标记默认事件;可点击。
祝你好运!
关于javascript - Vanilla Bootstrap 导航栏链接不可点击,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34465129/