我有这个简单的代码可以保存当前页面(基于我希望保存的ID),但是当它确实显示了保存窗口时,我将其视为没有样式的纯HTML代码。有没有办法如何保存PDF,包括CSS的所有样式?
@AfterThrowing(pointcut="com.xyz.myapp.SystemArchitecture.dataAccessOperation()",throwing="ex")
public void doRecoveryActions(NullPointerException ex) {
// ...
}
答案 0 :(得分:0)
function printDiv(divName) {
var printContents = document.getElementById(divName).innerHTML;
w=window.open();
w.document.write('<style type="text/css"> /* your code here */ </style>' + printContents);
w.print();
w.close();
}