在顶部加载我的所有页面

Load All Of My Pages At Top

我有一个网站,我的所有内容页面都在 iframe 中打开。

我遇到的一个问题是,当访问者在我的网站上打开第二页时,它会以与他们打开的上一页相同的 'scroll position' 打开。

我希望我的所有页面都在顶部打开。

注意:我花了好几天和好几个小时在这个网站和其他网站上搜索,试图找到有用的东西。 None 我找到的解决方案到目前为止都有效。

所以...我决定 post 我的问题和一个非常精简的 3 页示例,看看我是否可以获得一些急需的帮助。

如有任何帮助或建议,我们将不胜感激。

这是 'index'(父)页面:

    <!DOCTYPE html>
    <html>
    <head>

    <style>
    body{margin:0;}
    .header{width:100%; height:60px; background-color:blue;}
    .header a{vertical-align:middle; line-height:60px; font-family:Arial; font-size:12pt; color:#ffffff;}
    #myiframe{width:100%; height:2000px;}
    .footer{width:100%; height:60px; background-color:blue; margin-bottom:20px;}
    .footer a{vertical-align:middle; line-height:60px; font-family:Arial; font-size:12pt; color:#ffffff;}
    </style>

    </head>
    <body>

    <div class="header"><a>This is the Header of the index (parent) page.</a></div>

    <iframe id="myiframe" name="myiframe" src="1stPage.html"></iframe>

    <div class="footer"><a>Footer</a></div>

    </body>
    </html>

这是第一个 'content' 页(包括最后一个失败的滚动代码):

    <!DOCTYPE html>
    <html>
    <head>

    <style>
    body{margin:0;}
    .text{font-family:Arial; font-size:12pt;}
    .link{margin-top:1900px;}
    </style>

    <script>
    $(document).ready(function(){ 
    $('html, body').scrollTop(0); 
    $(window).on('load', function() {
    setTimeout(function(){ $('html, body').scrollTop(0);}, 0);
    });
    });
    </script>

    </head>
    <body>

    <div class="text">This is the 1st page in iframe (..and this is 'page postition' "Top" or "0").</div>
    <div class="text">Please scroll down to the link to 2nd page.</div>

    <div class="link"><a class="text" href="2ndPage.html" target="myiframe">Click here to go to 2nd Page</a></div><br>
    <div class="text">This is the 1st page in iframe (..and this is 'page postition' "Bottom" or "X").</div>

    </body>
    </html>

最后...第 2 'content' 页(也包括最后失败的滚动代码):

    <!DOCTYPE html>
    <html>
    <head>

    <style>
    body{margin:0;}
    .text{font-family:Arial; font-size:12pt;}
    .link{margin-top:1900px;}
    </style>

    <script>
    $(document).ready(function(){ 
    $('html, body').scrollTop(0); 
    $(window).on('load', function() {
    setTimeout(function(){ $('html, body').scrollTop(0);}, 0);
    });
    });
    </script>

    </head>
    <body>

    <div class="text">This is the 2nd page in iframe (..and this is 'page postition' "Top" or "0").</div>
    <div class="text">Please scroll down to the link to 2nd page.</div>

    <div class="link"><a class="text" href="1stPage.html" target="myiframe">Click here to go back to the 1st Page</a></div><br>
    <div class="text">This is the 2nd page in iframe (..and this is 'page postition' "Bottom" or "X").</div>

    </body>
    </html>

您可以在 iFrame onload 事件中执行此操作,如下所示:

<iframe id="myiframe" name="myiframe" src="1stPage.html" onload="scroll(0,0);"></iframe>