|
<br> auto=1立即PRINT,否则timeOut毫秒后PRINT,如printPage(0,5000); <BR><BR><BR>function printPage($auto=1,$timeOut=10000) { <BR>if ($auto == 1) { <BR>echo " <BR>< SCRIPT LANGUAGE="JavaScript" > <BR>< !-- Begin <BR>if (window.print) { <BR>window.print(); <BR>} <BR>else { <BR>alert('No printer driver in your PC'); <BR>} <BR>// End -- > <BR>< /script > <BR>n"; <BR>} <BR>else { <BR>echo " <BR>< SCRIPT LANGUAGE="JavaScript" > <BR><BR>< !-- Begin <BR>if (window.print) { <BR>setTimeout('printCheck()','$timeOut'); <BR>} <BR>else { <BR>alert('No printer driver in your PC'); <BR>} <BR>function printCheck() { <BR>agree = confirm('OK to print now?'); <BR>if (agree) window.print(); <BR>} <BR>// End -- > <BR>< /script > <BR>n"; <BR>} <BR>} <br><br> |
|