我们可以使用 scrollTo() 函数而不是动画函数吗?
我使用 animate 函数我想在不使用 animate 函数的情况下执行相同的功能。我们可以使用 scrollTo 函数吗?
$("#new_div").on("click", ".ui-keyboard-has-focus .keyboard_arrow_container li", function (event) {
//.scroll_bottom_arrow
switch ($(this).index()) {
case 0:
{
$(".wrapper_div_id").animate({
scrollLeft: "-=" + 500 + "px"
});
break;
}
case 1:
{
$(".wrapper_div_id").animate({
scrollLeft: "+=" + 500 + "px"
});
break;
}
case 2:
{
$(".wrapper_div_id").animate({
scrollTop: "-=" + 300 + "px"
});
break;
}
case 3:
{
$(".wrapper_div_id").animate({
scrollTop: "+=" + 300 + "px"
});
break;
}
}
// event.preventDefault();
});