如何在没有动画事件的 JQuery 中 scrollRight 。 对于 scrollLeft ,我们这样给出
$("body","html").scrollLeft();
如果没有动画事件,可以使用进行scrollRight吗?
scrollLeft事件可以使用scrollRight吗?
答案 0 :(得分:1)
$("body","html").scrollLeft('100');
在值中应用它将向右滚动。例如,如下所示
<!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;