我有jquery脚本,用于在元素之间滚动内容,使用相同的类... 当我第一次按下按钮时,一切正常,它会滚动到第一个元素,但是当我第二次按下滚动到下一个元素时,我得到一个控制台错误:
TypeError:offset为null
脚本:
/** scroll to element function **/
function scrollToElement(selector, time, verticalOffset) {
time = typeof (time) != 'undefined' ? time : 500;
verticalOffset = typeof (verticalOffset) != 'undefined' ? verticalOffset : 0;
element = $(selector);
offset = element.offset();
offsetTop = offset.top + verticalOffset;
$('html, body').animate({
scrollTop: offsetTop
}, time);
}
/**document ready**/
$(document).ready(function () {
count = 0;
var max_length = $('.highlight1').length;
/* scroll to 150px before .highlight with animation time of 400ms */
$('#next1').click(function (e) {
if (count < max_length) {
count++;
} else {
count = 1;
}
e.preventDefault();
scrollToElement('.highlight1:nth-child(' + count + ')', 400, -150);
});
$('#prev1').click(function (e) {
if (count > 1) {
count--;
} else {
count = max_length;
}
e.preventDefault();
scrollToElement('.highlight1:nth-child(' + count + ')', 400, -150);
})
});
html有点乱,因为一个文件中的所有内容都是这样的http://pastebin.com/t0PpU7Vm