zoukankan      html  css  js  c++  java
  • ScriptX实现的打印功能 只兼容IE

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrderPrint_From.aspx.cs" Inherits="MouldERP.ChiHZhong.OrderPrint_From" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head id="Head1" runat="server">
        <title>订单打印</title>
        <%--<object id="factory" style="display: none" classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
            codebase="../js/smsx.cab" viewastext>
           ../js/smsx.cab:是导入的打印包,此处codebase地址要对应上
        </object>--%>
        
        <object id="factory" style="display:none" 
        classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814" 
        codebase="smsx.cab" viewastext></object> 
    
        
        <script type="text/javascript">
         function PrintTable() {
                $("#div_print").hide();
                doprint();
            }
            
         function doprint() { 
         
            factory.printing.header = ""; 
            factory.printing.footer = ""; 
            factory.printing.portrait = false; //portrait是指打印方向,设置为true就是纵向,false就是横向。
            factory.printing.leftMargin   = 5    
            factory.printing.topMargin   =   2    
            factory.printing.rightMargin   =   5    
            factory.printing.bottomMargin   =   2 
            
            factory.DoPrint(false); //设置为false,直接打印 
         } 
    
        </script>
       
        
    </head>
    <body>
        <form id="form1" runat="server">
        
         <div id="div_print" style="margin-top:20px; text-align:center; display:block;">
                <input onclick="PrintTable();" id="PrintHide" type="submit" class="btnSubmitChiH" value="打   印" />
    
         </div>
        </form>
    </body>
    </html>
    

      

  • 相关阅读:
    Kubernetes 弹性伸缩全场景解析 (四)- 让核心组件充满弹性
    15分钟在笔记本上搭建 Kubernetes + Istio开发环境
    idea 插件的使用
    jQuery获取select元素选择器练习
    【Maven】添加ueditor到maven本地仓库
    jQuery序列化乱码解决
    Linux安装RedHat
    MyBatis SQL xml处理小于号与大于号
    js判断数据类型
    基于SSM框架的通用权限框架设计
  • 原文地址:https://www.cnblogs.com/lengv10/p/3682551.html
Copyright © 2011-2022 走看看