【问题标题】:How to go to a specific pdf page in iframe with a link?如何通过链接转到 iframe 中的特定 pdf 页面?
【发布时间】:2020-06-21 18:06:30
【问题描述】:

我想转到 iframe 中的特定 pdf 页面,但我不知道为什么它不起作用 我希望 pdf 页面在 iframe 内更改

<a HREF="test.pdf#page=4&zoom=150" target="iframe_a">go to page</a>


<iframe name="iframe_a" src="test.pdf" height="100%" width="100%" ></iframe>

【问题讨论】:

    标签: html pdf iframe hyperlink target


    【解决方案1】:
    <iframe id="changeiframe" height="100%" width="100%"src="https://example.com/"></iframe>
    
    <button onclick="changepage()">go to page</button>
    
    <script>
    function changepage() {
    document.getElementById("changeiframe").src = "https://www.w3schools.com/";
    }
    </script>
    

    【讨论】:

    • 你可以有多个 pdf 文件,就像你换一个页面一样
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-05-08
    • 2017-06-16
    • 2013-01-27
    • 2013-12-04
    • 1970-01-01
    • 2012-04-22
    相关资源
    最近更新 更多