案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript" src="/js/jquery.js"></script>
4
<script type="text/javascript">
5
$(document).ready(function(){
6
  $("button").click(function(){
7
    $("div").scrollLeft(100);
8
  });
9
});
10
</script>
11
</head>
12
<body>
13
<div style="border:1px solid black;width:100px;height:130px;overflow:auto">
14
The longest word in the english dictionary is: pneumonoultramicroscopicsilicovolcanoconiosis.
15
</div>
16
<button class="btn1">把滚动条的水平位置设置为 100px</button>
17
</body>
18
</html>
19