gpt4 book ai didi

JavaScript。单击时显示嵌入的 pdf

转载 作者:行者123 更新时间:2023-11-28 07:26:52 25 4
gpt4 key购买 nike

当我单击链接“显示 pdf”时,我想显示嵌入的 pdf。不过,一定有什么地方不对劲。现在将加载 pdf 文件。有帮助吗?

看看我的 fiddle :http://jsfiddle.net/benjones337/7jkmvLL9/2/

    <!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset=utf-8 />
<script type="text/javascript">
window.onload = function() {
document.getElementById("showPDF").onclick = function() {
document.getElementById("thePDF").style.visibility = "visible";
}
}
</script>
</head>
<body>


<div>
<object data="http://www.elml.org/website/en/download/gitta_databases.pdf" type="application/pdf">
<embed id="thePDF" src="http://www.elml.org/website/en/download/gitta_databases.pdf" width="700" height="575" type="application/pdf" />
</object>
<p><a id="showPDF">Show PDF</a></p>
</div>

</body>

</html>

最佳答案

  1. 避免在 jsfiddle 中使用 onload 事件,因为该事件在页面“加载”时已经发生。

  2. 隐藏对象本身(我将您的 id 移至父元素),因为嵌入元素不受您的样式影响。

jsfiddle.net/7jkmvLL9/6/

关于JavaScript。单击时显示嵌入的 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29547947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com