DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript+CSS控制打印格式示例介紹
JavaScript+CSS控制打印格式示例介紹
編輯:JavaScript綜合知識     

 1. 用media="print"的css來控制要打印的文件testPrint.html中引用media為print的樣式,表示打印時該樣式才起作用 

代碼如下: <link href="/style/print.css" rel="stylesheet" type="text/css" media="print">    /style/print.css文件   代碼如下: .noprint{display:none;}    在testPrint.html中使用print.css中的樣式,在網頁浏覽的時候是看不出效果的,但是打印的時候會起作用,如下面這一段,加上noprint之後,在浏覽器中仍然是現實的,但是打印的時候不顯示:   代碼如下: <div class="noprint">  <input type="button" onclick="window.print();" value="打印本頁" />  </div>    當然print.css裡面的樣式你可以隨便寫,改顏色啊(彩色的圖像在黑白打印機下效果不好,可以用另一種樣式打印),字體什麼的都可以,隨便發揮-----------------------------------------------------------------    2. 用JavaScript來控制    因為這樣那樣的原因,可能有的人css不太熟練,有的人JavaScript比較牛x,有時候JavaScript也是不錯的選擇  代碼如下: <script type="text/javascript">  <!--  //自動在打印之前執行  window.onbeforeprint = function(){  $("#test").hide();  }    //自動在打印之後執行  window.onafterprint = function(){  $("#test").show();  }  //-->  </script>      <div id="test">這段文字不會被打印出來</div>    打印之前,會調用window.onbeforeprint函數,這時你可以隨意發揮,用你的聰明才智給html重新構造一邊,然後打印。當然打印之後一般還要弄回來,就是window.onafterprint函數了    ---------------------------------------------------------------    小技巧:注意一點,打印我們都知道是window.print(),其實也可以打印框架的,如window.top.centerFrame.MainFrame.print(); 
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved