2015-04-07 50 views
0

當我使用打印選項時。日期已顯示左上角像這樣4/7/2015。並且URL已經顯示在左下角,像這樣
http://localhost/sam/abn/add_new_rec.php?type=1。我只需要我的收據。但不是這個日期和網址。朋友plz幫我把這個隱藏起來..PHP-打印沒有網址和日期的頁面

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

回答

1

哦這個問題可以修復瀏覽器中的選項 - >頁眉和頁腳!

enter image description here

1

這個問題在這裏是一樣的嗎? Remove header and footer from window.print()

或者你只是沒有取消選中不在瀏覽器中包含頁眉和頁腳?

+0

是的沒錯。同樣的問題。有沒有其他解決方案? Mr.GaLaBoOnZ –

+0

試試這個'@page {margin:0px auto;}',你可能需要添加一個#container div來使頁面合適,永遠不會嘗試Safari – GaLaBoOnZ