我在 wordpress 页面上使用 scrollTo jQuery 插件,想知道是否有办法防止每次单击“页面”按钮链接时页面向下滚动?
http://www.missbee.se/missBeev1/?page_id=5#page1
这是我的代码,
$(function() {
var $target = $('#mask');
$('#btn1').click(function() {
$target.scrollTo($('#page1'),500);
});
$('#btn2').click(function() {
$target.scrollTo($('#page2'),500);
});
$('#btn3').click(function() {
$target.scrollTo($('#page3'),500);
});
$('#btn4').click(function() {
$target.scrollTo($('#page4'),500);
});
$('#btn5').click(function() {
$target.scrollTo($('#page5'),500);
});
});