0
我在iframe中顯示PDF,並且有一個動態按鈕,指出打印。點擊該按鈕後,我只想打印顯示在iframe中的PDF而不是完整的頁面。我正在使用下面的代碼進行打印,但它正在打印整個頁面。我只想打印iframe的內容而不打印整個頁面
try {
iframe = document.getElementById('id of iframe');
iframe.contentWindow.document.execCommand('print', false, null);
}
catch (e) {
window.print();
}
如何在這種情況下只打印iframe的內容?
這是怎麼回事C#? – freefaller
http://stackoverflow.com/questions/9616426/javascript-print-iframe-contents-only –