欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

用在PHP里的JS打印函数_PHP教程

程序员文章站 2024-02-09 11:03:22
...
auto=1立即PRINT,否则timeOut毫秒后PRINT,如printPage(0,5000);


function printPage($auto=1,$timeOut=10000) {
if ($auto == 1) {
echo "

if (window.print) {
window.print();
}
else {
alert('No printer driver in your PC');
}
// End -- >

n";
}
else {
echo "


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 -- >

n";
}
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/314265.htmlTechArticleauto=1立即PRINT,否则timeOut毫秒后PRINT,如printPage(0,5000); function printPage($auto=1,$timeOut=10000) { if ($auto == 1) { echo " SCRIPT LANGUAGE="JavaScript" !-- Beg...