Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一封带有前端界面的信件,供用户完成。单击打印按钮时,我不希望打印前端页面,仅从第二页开始。是否有任何脚本可以做到这一点,或者是否有另一种方法可以做到这一点?谢谢
您可以将以下代码添加到按钮的单击事件。第二个参数表示从哪一页开始打印(它从零开始),第三个参数表示最后一页是什么。
xfa.host.print(1, "1", (xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);