點擊按鈕時列印HTML 元素而不列印頁面
在此場景中,您尋求一種列印由按鈕觸發的HTML內容的方法點擊而不在列印輸出中捕獲整個網頁。請考慮以下解決方案:
CSS 列印媒體規則
使用 CSS 列印媒體規則,您可以選擇性地顯示僅用於列印目的的內容。實作方法如下:
<code class="css">/* CSS file */ @media print { /* Hide any element you don't want to print */ .noPrint { display: none; } /* Set elements you want to print to display */ h1 { color: #f6f6; } } /* Elements in the HTML page */ <h1> Print me </h1> <h1 class="noPrint"> No print </h1> <button onclick="window.print();" class="noPrint"> Print Me </button></code>
說明
優點
以上是如何在單擊按鈕時列印特定的 HTML 元素而不列印整個頁面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!