我有一个网页,左边的部分是索引,右边的部分是内容。现在我想在左侧注销药丸按钮但收到错误:未捕获错误:语法错误,无法识别的表达式:logout.php。
<ul class="nav nav-pills nav-stacked col-sm-4">
<li><a href="logout.php" data-toggle="pill">Log out</a></li>
</ul>
答案 0 :(得分:0)
确保你没有这样的东西(滚动动画):
$('body').on('click', 'a', function() {
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 500);
return false;
});