有没有办法让我在不使用谷歌浏览器的浏览器内置PDF查看器的情况下查看PDF?
我想要完成的是按文件查看PDF文件。
我需要按文件查看PDF,而不是可滚动的。 当我使用javascript查看PDF时,它总是打开chrome的PDF查看器。
编辑:我使用Python和Pyramid框架作为我的后端。
<script>
window.open('test.pdf','mywindow','width=400,height=200')
</script>
感谢那些可以提供帮助的人!
答案 0 :(得分:1)
$('.btn').click(function(){
$('.modal').on('show.bs.modal',function(){
$(this).find('iframe').attr('src','http://www.tutorialspoint.com/php/php_tutorial.pdf')
})
$('.modal').modal({show:true})
$('iframe').load(function() {
$('.loading').hide();
});
})
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<button class="btn btn-primary">show modal</button>
<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<iframe src="" frameborder="0"></iframe>
</div>
</div>
</div>
这是工作片段。