用在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";
}
}
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";
}
}
上一篇: 网站模板安装问题
下一篇: 第二届华东地区数据库大会的PPT
推荐阅读
-
用在PHP里的JS打印函数_PHP教程
-
php函数重载的替代方法_PHP教程
-
php中通过正则表达式下载内容中的远程图片的函数代码_PHP教程
-
[php内核]----文件系统函数用于普通文件时的一些情况_PHP教程
-
PHP中file_exists函数不支持中文名的解决方法_PHP教程
-
php中explode与split函数的区别_PHP教程
-
Output Buffer(输出缓冲)函数的妙用_PHP教程
-
php数组函数序列之prev() - 移动数组内部指针到上一个元素的位置,并返回该元素值_PHP教程
-
PHP中函数rand和mt_rand的区别比较_PHP教程
-
php打印一个边长为N的实心和空心菱型的方法,实心_PHP教程