首先这个层要是显示状态
其次你随便找一个这个层里的对象 focus() 一下即可

解决方案 »

  1.   

    不是聚集到滚动条上,而是聚集到这个要滚动的区域里的某个对象上,比如说:
    <div style="overflow: scroll; width: 100; height: 100">
      <a href=# id=mm>link</a><br>
      <span style="height: 200"></span>
    </div>
    <input type=button value=focus onclick="document.all.mm.focus()">
    就这样聚集一下,你就可以使用上下方向键拉动滚动条了
      

  2.   

    <div style="overflow: scroll; width: 100; height: 100">
      <a href=# id=mm>link</a><br>
      <span style="height: 200"></span>
    </div>
    <input type=button value=focus onclick="document.all.mm.setActive()">用用这个新的方法 IE5.5+