1. 程式人生 > >最簡單的列印方法window.print()

最簡單的列印方法window.print()

程式碼如下:
function preview() {
    bdhtml = window.document.body.innerHTML;
    sprnstr = " ";
    eprnstr = " ";
    prnhtml = bdhtml.substr(bdhtml.indexOf(sprnstr) + 10);
    prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr));
    window.document.body.innerHTML = prnhtml;
    window.print();
}

上面的是javascript程式碼,下面是html頁面程式碼

複製程式碼程式碼如下:
       
       
            課程表查詢結果
       
本部分以下被列印

       
       
  要列印的內容放在這裡