用在PHP里的JS打印函數(shù)
更新時間:2006年10月09日 00:00:00 作者:
auto=1立即PRINT,否則timeOut毫秒后PRINT,如printPage(0,5000);
function printPage($auto=1,$timeOut=10000) {
if ($auto == 1) {
echo "
< SCRIPT LANGUAGE="JavaScript" >
< !-- Begin
if (window.print) {
window.print();
}
else {
alert('No printer driver in your PC');
}
// End -- >
< /script >
n";
}
else {
echo "
< SCRIPT LANGUAGE="JavaScript" >
< !-- Begin
if (window.print) {
setTimeout('printCheck()','$timeOut');
}
else {
alert('No printer driver in your PC');
}
function printCheck() {
agree = confirm('OK to print now?');
if (agree) window.print();
}
// End -- >
< /script >
n";
}
}
相關(guān)文章
PHP調(diào)用三種數(shù)據(jù)庫的方法(1)
PHP調(diào)用三種數(shù)據(jù)庫的方法(1)...2006-10-10
PHP個人網(wǎng)站架設(shè)連環(huán)講(三)
PHP個人網(wǎng)站架設(shè)連環(huán)講(三)...2006-10-10

