我正在使用一段简单的代码,以便将内部链接滚动到特定的div。它按照我的意图工作,但它也重新加载页面。滚动工作完美,只是我需要它不重新加载页面。如果这很重要,我在我创建的Wordpress主题中使用它。
HTML:
<a href="#hiremenow">This may sound crazy, So hire me maybe?</a>
<div id="hiremenow"></div>
SCRIPT:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
void(0);
});
});
});
答案 0 :(得分:1)
返回错误值。
$('a[href^="#"]').on('click',function (e) {
//whatever...
return false;
});
这意味着“已经处理了点击事件,不执行标准操作”。