gpt4 book ai didi

javascript - 如何将页面上的所有帧打印到一个文件中

转载 作者:行者123 更新时间:2023-12-03 09:42:15 25 4
gpt4 key购买 nike

我正在使用frameset标签,我想打印框架集中的所有框架

<html>
<frameset rows="10%,*">
<frame name="top_frame" src="top-frame.htm" frameborder="1" noresize="0" scrolling="no">
<frameset cols="20%,*">
<frame name="left_frame" src="left-frame.htm" frameborder="0" noresize="0" scrolling="no">
<frame name="right_frame" src="right-frame.htm" frameborder="0" noresize="0" scrolling="auto">
</frameset>
</frameset>
</html>

我使用了 parent.window.focus();parent.print(); 它在 Chrome 中工作,但在 IE11 中它打印一个文件中的每一帧。

有什么建议吗?

我还使用了 parent.window.focus();window.print(); 但它在两者中都不起作用。

最佳答案

这应该有效:

try{
document.execCommand('print', false, null);
}
catch(e){
window.print();
}

Source link

关于javascript - 如何将页面上的所有帧打印到一个文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31154947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com