如何自动滚动到一个文本文件窗口的底部?(How to automatically scrolling

2019-09-28 03:19发布

我打开一个新窗口的TXT文件的按钮。 是否有办法来自动转到使用JavaScript或PHP该网页的最底部? 或任何特定位置(如搜索字符串)? 因为它是一个TXT文件时,没有锚。

这里是我的按钮的onclick:

onclick="window.open('comments.txt','_comments').focus();" 

我已研究过增加这的onclick(但它没有工作):

w.scrollTo(0,150);

Answer 1:

这其实很容易做到:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>This is a test</title>
</head>
<body>

    <button id="open">Open text file</button>

    <script>
        document.getElementById('open').onclick = function(){
            window.open('comments.txt','_comments').onload = function(){
                this.scrollTo(0, 99999); // Use the biggest value you can
            };
        };
    </script>

</body>
</html>

请确保您从服务器(不是本地)这样做,因为浏览器会检查这些文件是在同一个域(出于安全原因)。 如果您想直接在你的机器上工作,安装一个本地服务器和使用http://localhost/

注:在这里,我滚动到99999px,因为没有实际的HTML文档,我们无法找出原稿的高度。 如果这还不够,使用更高的价值。



文章来源: How to automatically scrolling to the bottom of a text file window?