是否可以通过javascript播放由谷歌文档查看器来源的iframe中打开的pdf ...?出于某种原因,我希望用户在同一页面上并从同一页面打印pdf ...
这是iframe的代码:
<button style="height:35px; cursor:pointer; " class="button" id="print"> <img src="images/print.png"/> <span style=" vertical-align: super; "> Print this note </span> </button>
<?php echo '<iframe id="PDFtoPrint" src="http://docs.google.com/gview?url='.JURI::root().'resources/pdf_full/'.$full_name.'&embedded=true" style="width:800px; height:1000px; " frameborder="0"></iframe>';?>
这是打印的jquery代码......
jQuery(document).ready(function($) {
$('#print').click(function(){
// window.frames["PDFtoPrint"].focus();
// window.frames["PDFtoPrint"].print(); // NOT WORKING
// var PDF = document.getElementById('PDFtoPrint');
// PDF.focus();
// PDF.contentWindow.print(); // NOT WORKING
// $("#PDFtoPrint").get(0).contentWindow.print(); // NOT WORKING
// document.getElementById("PDFtoPrint").contentWindow.print(); // NOT WORKING
});
});
答案 0 :(得分:1)
不,由于JavaScript的同源策略,这是不可能的。 JavaScript无法操纵或以其他方式与来自另一个域的框架中加载的页面的DOM交互。据我所知,有一个例外,但这需要Google明确允许您的网站这样做,但他们不会这样做。您可以在此处阅读有关同源政策的更多信息:https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy