當我使用打印選項時。日期已顯示左上角像這樣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;
}
是的沒錯。同樣的問題。有沒有其他解決方案? Mr.GaLaBoOnZ –
試試這個'@page {margin:0px auto;}',你可能需要添加一個#container div來使頁面合適,永遠不會嘗試Safari – GaLaBoOnZ