我使用以下代码在页面中嵌入了PDF:
<style>
.text {
width: 400px;
min-height: 100px;
}
</style>
<object class="text" data="text.html" type="text/html"></object>
<script>
window.onload = function () {
var object = document.querySelector('.text');
var doc = object.contentDocument;
doc.documentElement.style.overflow = 'hidden';
doc.body.style.overflow = 'hidden';
var contentsHeight = doc.documentElement.offsetHeight;
object.height = contentsHeight;
}
</script>
每个浏览器都会显示一个在悬停时下载PDF的选项。
是否可以添加任何参数以显示保存选项?
由于