我正在使用xhtml在JSF中创建许可协议页面。在这里有一个链接“打印许可证协议”。其中,当用户点击打印许可协议时,许可证将导出为pdf,其中 然后用户可以打印。你能告诉我在jsf中我们是怎么做的吗?
答案 0 :(得分:0)
以下javascript函数(多年前在JSF 1.2中)用于打印 toPrint 页面的一部分:
function printTandC() {
if (isIE() == true){
document.toPrint.focus();
document.toPrint.print();
} else {
window.frames['toPrint'].focus();
window.frames['toPrint'].print();
}
}
其中toPrint
<iframe src="../tandcprintable.seam" id="toPrint" name="toPrint" class="tandcprintable"/>