iOS Safari无法滚动到iframe中锚定

roy*_*roy 6 html iframe mobile-safari ios

我有一个HTML页面,iframe其内容我需要在加载时滚动到某个位置.我的示例在除iOS Safari之外的大多数浏览器中都能正常工作 - 这是我真正需要的.它倾向于在第一页加载时在iOS Safari中工作,但通常任何刷新后都会将iframe内容滚动到顶部.

我已经读过重定向导致#anchorname丢弃的问题,但这不是在这种情况下发生的事情.

真实iframe内容和主页面位于不同的域中.我可以影响它的内容iframe,但我无法控制它.它也用于其他目的,所以我做任何可能干扰它的自定义能力都有限.

这里有实时链接:https: //s3.amazonaws.com/ios-iframe-test/iframe_test.html

这是父内容:

<!DOCTYPE html>
<html>
  <head>
    <title>test</title>
    <meta content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0" name="viewport">

    <style type="text/css">

      #root {
        position: relative;
      }

      #wrapper {
        height: 300px;
        width: 300px;
        overflow-x: hidden;
        overflow-y: scroll;
        position: relative;
        -webkit-overflow-scrolling: touch;
      }

      iframe {
        width: 100%;
        height: 100%;
      } 

    </style>

  </head>
  <body>
    <h1>Why won't this iframe scroll to where I want?</h1>
    <div id="root">
      <div id="wrapper">
        <iframe src="https://s3.amazonaws.com/ios-iframe-test/iframe_content.html#scrolltome"></iframe>
      </div>
    </div>
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

以下是iframe内容:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>

<body>

  <h1>Have some ipsum...</h1>
  <p>
    Lorem... (live example has much more here just to make the scrolling apparent)
  </p>

  <h1 style="color: red;">
    <a name="scrolltome" id="scrolltome">This is where I want to scroll></a>
  </h1>

  <p>
    Lorem...
  </p>

</html>
Run Code Online (Sandbox Code Playgroud)

Joh*_*rty 2

这是由于 iOS Safari 的一个错误导致 iframe 扩展到其内容的高度。您可以使用 Safari 桌面调试器并运行来验证这一点:

document.querySelector('iframe').offsetHeight

position: fixed解决方案是通过将内容放入容器中并允许其滚动来降低 iframe 主体的高度。

例如,将body的内容放入<main>标签中,并设置样式如下:

    <html>
     <head>
       <style>
          main {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 10px;
            overflow-y: scroll;
            -webkit-overflow-scrolling: touch;
            z-index: 1;
          }
       </style>
     </head>
     <body>
       <main>
          <h1>Have some ipsum...</h1>
          <p>Lorem... (live example has much more here just to make the scrolling apparent)</p>
          <h1 style="color: red;">
            <a name="scrolltome" id="scrolltome">This is where I want to scroll</a>
          </h1>
          <p>
             Lorem...
          </p>
       </main>
     </body>
    </html>
Run Code Online (Sandbox Code Playgroud)

这告诉 Safari iframe 主体与包含它的页面高度相同,但其内容是可滚动的。您的锚点现在可以工作了。