Home > Backend Development > PHP Tutorial > 用在PHP里的JS打印函数_PHP

用在PHP里的JS打印函数_PHP

WBOY
Release: 2016-06-01 12:33:01
Original
803 people have browsed it

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";
}
}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template