【问题标题】: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>