如何在没有Animate事件的情况下在Jquery中scrollRight?

时间:2016-11-03 09:47:55

标签: jquery scrollbar

如何在没有动画事件的 JQuery scrollRight 。 对于 scrollLeft ,我们这样给出

 $("body","html").scrollLeft();
如果没有动画事件,可以使用

进行scrollRight吗?

scrollLeft事件可以使用scrollRight吗?

1 个答案:

答案 0 :(得分:1)

$("body","html").scrollLeft('100');在值中应用它将向右滚动。例如,如下所示

For more Information



<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
       $("div").scrollLeft('200');
    });
});
</script>
</head>
<body>

<div style="border:1px solid black;width:100px;height:130px;overflow:auto">
The longest word in the english dictionary is: pneumonoultramicroscopicsilicovolcanoconiosis.
</div><br>

<button>scroll right</button>

</body>
</html>
&#13;
&#13;
&#13;