iframe src链接到的页面的“保存页面/打印页面”按钮

Save Page / Print Page buttons for the page that iframe src is linking to

本文关键字:打印 保存页面 按钮 src iframe 链接 保存      更新时间:2023-09-26

假设我有outerpage.html

<html>
<head>
</head>
<body>
    <input type="button" id="printPage" name="printPage" />
    <input type="button" id="savePage" name="savePage" />
    <iframe src="someOtherPage.html"></iframe>
</body>
</html>

单击相应按钮时,如何使用Javascript保存和打印someOtherPage.html?

使用window.print()方法。

有关类似问题和答案,请参阅以下链接。

如何在Safari/Chrome 中从javascript打印IFrame