PHP-打印没有网址和日期的页面

时间:2015-04-07 09:23:41

标签: javascript php printing

当我使用打印选项时。日期显示在左上角像这样4/7/2015。并且URL已经显示在左下角,如下所示 http://localhost/sam/abn/add_new_rec.php?type=1。我只需要收据。但不是这个日期和网址。朋友PLZ帮我隐藏这个..

function go1()
{
var w = window.open('', '', 'width=800,height=600,resizeable,scrollbars');
 w.document.write($("#printthis").html());
 w.document.close(); // needed for chrome and safari
 javascript:w.print();
 w.close();
 return false;
}

2 个答案:

答案 0 :(得分:1)

这个问题在这里是一样的吗? Remove header and footer from window.print()

或者您只是没有取消选中浏览器中不包含页眉和页脚?

答案 1 :(得分:1)

哦这个问题可以在选项中修复浏览器 - >页眉和页脚!

enter image description here