jsp頁面列印功能

來源:互聯網
上載者:User

使用lodop列印控制項可以方便的做出強大的功能。

控制項下載:http://mtsoftware.v053.gokao.net/download.html

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>  <title>print test</title></head><body><object classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" height="0" width="0" id="WebBrowser"></object><div id="print"><table border="1" bordercolor="#000000" cellspacing="0" width="300" height="120" align="center"><tr><td>編號</td><td>姓名</td><td>性別</td><td>年齡</td></tr><tr><td>1</td><td>張三</td><td>男</td><td>20</td></tr></table></div><br/><div id="notprint" name="notprint"><input type="button" value="預覽" onclick="pagePreview()"/><input type="button" value="列印" onclick="pagePrint()"/><input type="button" value="版面設定" onclick="pageSetup()"/></div><script type="text/javascript">var WebBrowser = document.getElementById("WebBrowser");function pagePreview(){var display = document.getElementById("notprint").style.display;document.getElementById("notprint").style.display="none";WebBrowser.ExecWB(7,1);document.getElementById("notprint").style.display=display;}function pagePrint(){var display = document.getElementById("notprint").style.display;document.getElementById("notprint").style.display="none";WebBrowser.ExecWB(6,1);document.getElementById("notprint").style.display=display;}function pageSetup(){WebBrowser.ExecWB(8,1);}</script></body></html>

media屬性

HTML<link> 標籤的 media 屬性

HTML <link> 標籤

定義和用法

media 屬性規定被連結文檔將顯示在什麼裝置上。

media 屬性用於為不同的媒介類型規定不同的樣式。

執行個體

兩種不同的樣式表,針對兩種不同的媒介類型(電腦螢幕和列印):

<head><link rel="stylesheet"type="text/css" href="theme.css" /><link rel="stylesheet"type="text/css" href="print.css"media="print"/></head>

HTML<style> 標籤的 media 屬性

HTML <style> 標籤

定義和用法

media 屬性用於為不同的媒介類型規定不同的樣式。

提示:如需在一個 style 元素中定義一個以上的媒介類型,請使用逗號分隔的列表(例如:<style type="text/css"media="screen,projection">)。

執行個體

針對兩種不同媒介類型的兩種不同的樣式(電腦螢幕和列印):

<html><head><style type="text/css">h1 {color:#FF0000;}p {color:#0000FF;}body {background-color:#FFEFD6;}</style><style type="text/css" media="print">h1 {color:#000000;}p {color:#000000;}body {background-color:#FFFFFF;}</style></head><body><h1>Header 1</h1><p>A paragraph.</p></body></html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.