我仍在学习 JavaScript,需要一些帮助。我正在制作下一个和上一个按钮,这些按钮会导致滚动到<td>
页面上的下一个或上一个。我正在尝试将其应用于 virb 站点的现有结构。标记如下所示:
div id="next">next</div><div id="prev">prev</div>
<table>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
</table>
这是我正在使用的脚本:
jQuery.easing.def = "easeInOutQuad";
$("#next").click(function (){
//$(this).animate(function(){
$('html, body').animate({
scrollLeft: $("td").next.offset().left
}, 600);
//});
});
这是我正在研究的 jsFiddle