用js代碼控制列印網頁

來源:互聯網
上載者:User

標籤:列印   網頁   js   表單   jquery外掛程式   完整性   

    有關網頁列印,可以使用的方法有:“1.點擊滑鼠右鍵,選擇預覽列印,執行列印;2.按鍵盤上的[print sc sysrq]按鈕”;還有列印當前網頁的方法就是,用相關代碼來實現,這裡用到的是js;其實用js列印網頁很簡單,最為重要的就是print()這個函數。

    但是簡單也不要掉以輕心,不同地方用到,處理方式也需要注意,不然也會得到一些自己不想的結果。

    1.列印整個網頁的內容:

    window.print();

    2.列印指定id/class的網頁內容:

    <script>

        function printdiv(printpage)
        {
            var headstr = "<html><head><title></title></head><body>";
            var footstr = "</body>";
            var newstr = document.all.item(printpage).innerHTML;
            var oldstr = document.body.innerHTML;
            document.body.innerHTML = headstr+newstr+footstr;
            window.print();
            document.body.innerHTML = oldstr;
            return false;
        }
    </script>

    ●  以上方法在本頁面有表單時,可能會對資料完整性造成影響,換成下面的方法代替可解決這個問題:

    var divToPrint = document.getElementById("myMreview");
    newWin = window.open();
    newWin.document.write(divToPrint.innerHTML);
    newWin.document.close();
    newWin.focus();
    newWin.print();
    newWin.close();
    >> 原因是因為,前者是在本頁面內容替換,相關的資料可能被替換掉了,再來找就找不到了;後者是在新的頁面進行列印操作,不影響前一個頁面資料。

    3.可以使用jquery外掛程式:

    PrintArea

    jqprint

    Fingerprint

    printpage

    Lodop

    等等...


本文出自 “Shows technology” 部落格,請務必保留此出處http://wangzhijun.blog.51cto.com/9660708/1613078

用js代碼控制列印網頁

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.