当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM scrollTo() 方法
The scrollTo() method is used to scroll the content to the specified coordinates.
scrollTo()方法可用来将内容滚动到指定的坐标上
scrollTo(xpos,ypos) |
| Parameter 参数 | Description 描述 |
|---|---|
| xpos | Required. The position to scroll to, along the x-axis 必选。定位,X坐标 |
| ypos | Required. The position to scroll to, along the y-axis 必选。定位,Y坐标 |
<html>
<head>
<script type="text/javascript">
function scrollWindow()
{
window.scrollTo(100,500)
}
</script>
</head> <body> <form> <input type="button" onclick="scrollWindow()" value="Scroll"> </form> <p>SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL</p> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <p>SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL</p> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <p>SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL SCROLL</p> </body> </html> |
Scroll the window to a specified position
将屏幕滚动到指定的位置上
评论 (0) All