WEB打印分页类(JS)

 

None.gif < HTML >
None.gif
< HEAD >
None.gif
< TITLE > print </ TITLE >
None.gif
< meta  http-equiv ="content-type"  content ="text/html;charset=gb2312" >
ExpandedBlockStart.gifContractedBlock.gif
< style > dot.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif
/**//**
InBlock.gif *    打印相关
ExpandedSubBlockEnd.gif
*/
 
InBlock.gif@media print 
ExpandedSubBlockStart.gifContractedSubBlock.gif
{dot.gif}{
InBlock.gif    .notprint 
InBlock.gif    {
InBlock.gif        display
:none;
ExpandedSubBlockEnd.gif    
}

InBlock.gif    .PageNext
ExpandedSubBlockStart.gifContractedSubBlock.gif    
{dot.gif}{
InBlock.gif        page-break-after
:always;
ExpandedSubBlockEnd.gif    
}
     
InBlock.gif}
InBlock.gif
InBlock.gif@media screen 
ExpandedSubBlockStart.gifContractedSubBlock.gif
{dot.gif}{
InBlock.gif    .notprint 
InBlock.gif    {
InBlock.gif        display
:inline;
InBlock.gif        cursor
:hand;
ExpandedSubBlockEnd.gif    
}

InBlock.gif}
InBlock.gif
InBlock.gif.text1
ExpandedSubBlockStart.gifContractedSubBlock.gif
{dot.gif}{
InBlock.gif    width
: 120px;
InBlock.gif    overflow
: hidden; 
InBlock.gif    text-overflow
:ellipsis;
ExpandedSubBlockEnd.gif
}

InBlock.gif.text2
ExpandedSubBlockStart.gifContractedSubBlock.gif
{dot.gif}{
InBlock.gif    width
: 80px;
InBlock.gif    overflow
: hidden; 
InBlock.gif    text-overflow
:ellipsis;
ExpandedBlockEnd.gif
}

None.gif
</ style >
None.gif
ExpandedBlockStart.gifContractedBlock.gif
< script  language ="javascript" > dot.gif
InBlock.gif
<!--
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif
/**//*
InBlock.gif**    ==================================================================================================  
InBlock.gif**    类名:CLASS_PRINT  
InBlock.gif**    功能:打印分页  
InBlock.gif**    示例:  
InBlock.gif    ---------------------------------------------------------------------------------------------------  
InBlock.gif  
InBlock.gif        var pp = new CLASS_PRINT();
InBlock.gif
InBlock.gif        window.onload = function(){
InBlock.gif            pp.header = document.getElementById("tabHeader");
InBlock.gif            pp.content= document.getElementById("tabDetail");
InBlock.gif            pp.footer = document.getElementById("tabFooter");
InBlock.gif
InBlock.gif            pp.hideCols("5,7");    
InBlock.gif            pp.hideRows("3,15");
InBlock.gif            pp.pageSize = 10;    
InBlock.gif        }
InBlock.gif
InBlock.gif        <BODY οnbefοreprint="pp.beforePrint()" οnafterprint="pp.afterPrint()">
InBlock.gif
InBlock.gif  
InBlock.gif    ---------------------------------------------------------------------------------------------------  
InBlock.gif**    作者:ttyp  
InBlock.gif**    邮件:ttyp@21cn.com  
InBlock.gif**    日期:2006-11-10  
InBlock.gif**    ==================================================================================================  
ExpandedSubBlockEnd.gif
*/

InBlock.gif
function CLASS_PRINT()
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif    
this.header        = null;
InBlock.gif    
this.content    = null;
InBlock.gif    
this.footer        = null;
InBlock.gif    
this.board        = null;
InBlock.gif    
this.pageSize    = 10;
InBlock.gif
InBlock.gif    
var me            = this;
InBlock.gif
InBlock.gif    
//哈希表类
InBlock.gif
    function Hashtable()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
this._hash        = new Object();
ExpandedSubBlockStart.gifContractedSubBlock.gif        
this.add        = function(key,value)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                            
if(typeof(key)!="undefined")dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                                
if(this.contains(key)==false)dot.gif{
InBlock.gif                                    
this._hash[key]=typeof(value)=="undefined"?null:value;
InBlock.gif                                    
return true;
ExpandedSubBlockStart.gifContractedSubBlock.gif                                }
 else dot.gif{
InBlock.gif                                    
return false;
ExpandedSubBlockEnd.gif                                }

ExpandedSubBlockStart.gifContractedSubBlock.gif                            }
 else dot.gif{
InBlock.gif                                
return false;
ExpandedSubBlockEnd.gif                            }

ExpandedSubBlockEnd.gif                        }

ExpandedSubBlockStart.gifContractedSubBlock.gif        
this.remove        = function(key)dot.gif{delete this._hash[key];}
ExpandedSubBlockStart.gifContractedSubBlock.gif        
this.count        = function()dot.gif{var i=0;for(var k in this._hash)dot.gif{i++;} return i;}
ExpandedSubBlockStart.gifContractedSubBlock.gif        
this.items        = function(key)dot.gif{return this._hash[key];}
ExpandedSubBlockStart.gifContractedSubBlock.gif        
this.contains    = function(key)dot.gif{return typeof(this._hash[key])!="undefined";}
ExpandedSubBlockStart.gifContractedSubBlock.gif        
this.clear        = function()dot.gif{for(var k in this._hash)dot.gif{delete this._hash[k];}}
InBlock.gif
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
//字符串转换为哈希表
ExpandedSubBlockStart.gifContractedSubBlock.gif
    this.str2hashtable = function(key,cs)dot.gif{
InBlock.gif        
InBlock.gif            
var _key    = key.split(/,/g);
InBlock.gif            
var _hash    = new Hashtable();
InBlock.gif            
var _cs        = true;
InBlock.gif
InBlock.gif        
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if(typeof(cs)=="undefined"||cs==null)dot.gif{
InBlock.gif                _cs 
= true;
ExpandedSubBlockStart.gifContractedSubBlock.gif            }
 else dot.gif{
InBlock.gif                _cs 
= cs;
ExpandedSubBlockEnd.gif            }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif            
for(var i in _key)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                
if(_cs)dot.gif{
InBlock.gif                    _hash.add(_key[i]);
ExpandedSubBlockStart.gifContractedSubBlock.gif                }
 else dot.gif{
InBlock.gif                    _hash.add((_key[i]
+"").toLowerCase());
ExpandedSubBlockEnd.gif                }

InBlock.gif
ExpandedSubBlockEnd.gif            }

InBlock.gif            
return _hash;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif    
this._hideCols    = this.str2hashtable("");
InBlock.gif    
this._hideRows    = this.str2hashtable("");
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
this.hideCols = function(cols)dot.gif{
InBlock.gif        me._hideCols 
= me.str2hashtable(cols)
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
this.isHideCols = function(val)dot.gif{    
InBlock.gif        
return    me._hideCols.contains(val);
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
this.hideRows = function(rows)dot.gif{
InBlock.gif        me._hideRows 
= me.str2hashtable(rows)
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
this.isHideRows = function(val)dot.gif{    
InBlock.gif        
return    me._hideRows.contains(val);
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
this.afterPrint = function()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
var table = me.content;        
InBlock.gif        
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(me.board)=="undefined"||me.board==null)dot.gif{        
InBlock.gif            me.board 
= document.getElementById("divPrint");
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if(typeof(me.board)=="undefined"||me.board==null)dot.gif{
InBlock.gif                me.board 
= document.createElement("div");
InBlock.gif                document.body.appendChild(me.board);
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(table)!="undefined")dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif            
for(var i =0;i<table.rows.length;i++)dot.gif{
InBlock.gif                
var tr = table.rows[i];
ExpandedSubBlockStart.gifContractedSubBlock.gif                
for(var j=0;j<tr.cells.length;j++)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
if(me.isHideCols(j))dot.gif{
InBlock.gif                        tr.cells[j].style.display 
= "";
ExpandedSubBlockEnd.gif                    }

ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        me.content.style.display    
= '';
InBlock.gif        me.header.style.display        
= '';
InBlock.gif        me.footer.style.display        
= '';
InBlock.gif        me.board.innerHTML            
= '';
InBlock.gif
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
this.beforePrint = function()dot.gif{
InBlock.gif
InBlock.gif        
var table = me.content;    
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(me.board)=="undefined"||me.board==null)dot.gif{        
InBlock.gif            me.board 
= document.getElementById("divPrint");
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if(typeof(me.board)=="undefined"||me.board==null)dot.gif{
InBlock.gif                me.board 
= document.createElement("div");
InBlock.gif                document.body.appendChild(me.board);
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(table)!="undefined"&&this.hideCols.length>0)dot.gif{        
InBlock.gif            
ExpandedSubBlockStart.gifContractedSubBlock.gif            
for(var i =0;i<table.rows.length;i++)dot.gif{
InBlock.gif                
var tr = table.rows[i];
ExpandedSubBlockStart.gifContractedSubBlock.gif                
for(var j=0;j<tr.cells.length;j++)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
if(me.isHideCols(j))dot.gif{                    
InBlock.gif                        tr.cells[j].style.display 
= "none";
ExpandedSubBlockEnd.gif                    }

ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif    
InBlock.gif        
InBlock.gif        
///开始分页    
InBlock.gif
        var pageSize = this.pageSize;
InBlock.gif        
InBlock.gif        
var head    = me.header;
InBlock.gif        
var foot    = me.footer;
InBlock.gif        
InBlock.gif        
var page    = new Array();
InBlock.gif        
var rows    = "";    
InBlock.gif        
var rowIndex= 1;
InBlock.gif
InBlock.gif        
var cp        = 0;
InBlock.gif        
var tp        = 0;
InBlock.gif        
InBlock.gif        
ExpandedSubBlockStart.gifContractedSubBlock.gif        
for(i=1;i<table.rows.length;i++)dot.gif{                
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if(this.isHideRows(i)==false)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                
if((((rowIndex-1)%pageSize)==0&&rowIndex>1)||i==table.rows.length)dot.gif{                                
InBlock.gif                    page[page.length] 
= getTable(head,table,rows,foot);
InBlock.gif                                                    
InBlock.gif                    rows    
= getOuterHTML(table.rows[i]) + "\n" ; 
InBlock.gif                    rowIndex
= 2;
InBlock.gif                                                                            
ExpandedSubBlockStart.gifContractedSubBlock.gif                }
 else dot.gif{
InBlock.gif                    rows    
+= getOuterHTML(table.rows[i]) + "\n"
InBlock.gif                    rowIndex
++;
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif        
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(rows.length>0)dot.gif{
InBlock.gif            page[page.length] 
= getTable(head,table,rows,foot);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        tp 
= page.length;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
for(var i=0;i<page.length;i++)dot.gif{
InBlock.gif            page[i] 
= page[i].replace(/\<\!--ct-->/g,(i+1)+'/+ tp).replace(/\<\!--cp--\>/g,i+1).replace(/\<\!--tp--\>/g,tp);
ExpandedSubBlockEnd.gif        }

InBlock.gif        
InBlock.gif                    
InBlock.gif        head.style.display        
= 'none';
InBlock.gif        foot.style.display        
= 'none';
InBlock.gif        table.style.display        
= 'none';
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(page.length>1)dot.gif{
InBlock.gif            me.board.innerHTML 
= page.join("\n<div class='pageNext'></div>");
ExpandedSubBlockStart.gifContractedSubBlock.gif        }
elsedot.gif{
InBlock.gif            me.board.innerHTML 
= page.join("");
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif
function getOuterHTML (node) dot.gif{
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
if(typeof(node)!="undefined"&&typeof(node.outerHTML)!="undefined")dot.gif{
InBlock.gif        
return node.outerHTML;
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
var emptyElements = dot.gif{
InBlock.gif      HR: 
true, BR: true, IMG: true, INPUT: true
ExpandedSubBlockEnd.gif    }
;
ExpandedSubBlockStart.gifContractedSubBlock.gif    
var specialElements = dot.gif{
InBlock.gif      TEXTAREA: 
true
ExpandedSubBlockEnd.gif    }
;
InBlock.gif
InBlock.gif    
var html = '';
ExpandedSubBlockStart.gifContractedSubBlock.gif    
switch (node.nodeType)dot.gif{
InBlock.gif        
case Node.ELEMENT_NODE:
InBlock.gif            html 
+= '<';
InBlock.gif            html 
+= node.nodeName;
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if (!specialElements[node.nodeName]) dot.gif{
InBlock.gif                
for (var a = 0; a < node.attributes.length; a++)
InBlock.gif                    html 
+= ' ' + node.attributes[a].nodeName.toUpperCase() + '="' + node.attributes[a].nodeValue + '"';
InBlock.gif                html 
+= '>'; 
ExpandedSubBlockStart.gifContractedSubBlock.gif                
if (!emptyElements[node.nodeName])dot.gif{
InBlock.gif                    html 
+= node.innerHTML;
InBlock.gif                    html 
+= '<\/+ node.nodeName + '>';
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

InBlock.gif            
else 
ExpandedSubBlockStart.gifContractedSubBlock.gif                
switch (node.nodeName)dot.gif{
InBlock.gif                    
case 'TEXTAREA':
InBlock.gif                        
var content = '';
InBlock.gif                        
for (var a = 0; a < node.attributes.length; a++)
InBlock.gif                            
if (node.attributes[a].nodeName.toLowerCase() != 'value')
InBlock.gif                                html 
+= ' ' + node.attributes[a].nodeName.toUpperCase() + '="' + node.attributes[a].nodeValue + '"';
InBlock.gif                            
else 
InBlock.gif                                content 
= node.attributes[a].nodeValue;
InBlock.gif                            html 
+= '>'; 
InBlock.gif                            html 
+= content;
InBlock.gif                            html 
+= '<\/+ node.nodeName + '>';
InBlock.gif                        
break
ExpandedSubBlockEnd.gif                }

InBlock.gif            
break;
InBlock.gif        
case Node.TEXT_NODE:
InBlock.gif            html 
+= node.nodeValue;
InBlock.gif            
break;
InBlock.gif        
case Node.COMMENT_NODE:
InBlock.gif            html 
+= '<!+ '--+ node.nodeValue + '--+ '>';
InBlock.gif            
break;
ExpandedSubBlockEnd.gif    }

InBlock.gif    
return html;
ExpandedSubBlockEnd.gif}

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
function getTable(header,table,content,footer)dot.gif{
InBlock.gif        
var htm = "";
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(header)!="undefined")dot.gif{
InBlock.gif            htm 
+= getOuterHTML(header);
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(table)!="undefined")dot.gif{        
InBlock.gif            htm 
+= "\n<" + table.tagName;
InBlock.gif            
ExpandedSubBlockStart.gifContractedSubBlock.gif            
for(var i =0;i<table.attributes.length;i++)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif                
if(table.attributes[i].specified)dot.gif{
InBlock.gif                    
if(table.attributes[i].name=="style")
InBlock.gif                        htm 
+= " style='" + table.style.cssText + "'";
InBlock.gif                    
else
InBlock.gif                        htm 
+= " " + table.attributes[i].nodeName + "='" + table.attributes[i].nodeValue + "'";
ExpandedSubBlockEnd.gif                }
        
ExpandedSubBlockEnd.gif            }
    
InBlock.gif            
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if(table.rows.length>0)dot.gif{
InBlock.gif                htm 
+= ">\n" + getOuterHTML(table.rows[0]) + content + "</" + table.tagName + ">";
ExpandedSubBlockStart.gifContractedSubBlock.gif            }
 else dot.gif{
InBlock.gif                htm 
+= ">\n" + content + "</" + table.tagName + ">\n";
ExpandedSubBlockEnd.gif            }
        
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
if(typeof(footer)!="undefined")dot.gif{
InBlock.gif            htm 
+= getOuterHTML(footer);
ExpandedSubBlockEnd.gif        }

InBlock.gif        
InBlock.gif        
return htm;
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
if(!window.attachEvent)dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        window.attachEvent 
= function()dot.gif{window.addEventListener(arguments[0].substr(2),arguments[1],arguments[2]);}
ExpandedSubBlockEnd.gif    }

ExpandedSubBlockEnd.gif}

InBlock.gif
InBlock.gif
InBlock.gif
var pp = new CLASS_PRINT();
InBlock.gif
InBlock.gifwindow.onload 
= function()
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif
InBlock.gif    pp.header 
= document.getElementById("tabHeader");
InBlock.gif    pp.content
= document.getElementById("tabDetail");
InBlock.gif    pp.footer 
= document.getElementById("tabFooter");
InBlock.gif
InBlock.gif    pp.hideCols(
"5,7");    
InBlock.gif    pp.hideRows(
"3,15");
InBlock.gif    pp.pageSize 
= 10;    
ExpandedSubBlockEnd.gif}

InBlock.gif
ExpandedBlockEnd.gif
//-->
None.gif
</ script >
None.gif
</ HEAD >
None.gif
< BODY  onbeforeprint ="pp.beforePrint()"  onafterprint ="pp.afterPrint()" >
None.gif
None.gif
< table  border =0  width ="95%"  align =center  id ="tabHeader" >
None.gif    
< tr >
None.gif        
< td  align ="center" >< font  size ='6'  face ='楷体_gb2312' > 元件列表 </ font ></ td >
None.gif    
</ tr >
None.gif    
< tr >
None.gif        
< td >< strong > 日期:2005年12月12日 </ strong ></ td >
None.gif    
</ tr >
None.gif
</ table >
None.gif
< table  border =1  width ="95%"  style ="border-collapse:collapse;"  align =center  cellpadding =3  id ="tabDetail" >
None.gif    
< tr  bgcolor ='#e8f4ff' >
None.gif        
< td  align ="center"  width ="35" > 序号 </ td >
None.gif        
< td  width ="160" > 产品名称 </ td >
None.gif        
< td > 规格型号 </ td >
None.gif        
< td  align ="center" > 品牌 </ td >
None.gif        
< td  align ="right" > 数量 </ td >
None.gif        
< td  width ="125" > 供应商 </ td >
None.gif        
< td  align ="right" > 实际数量 </ td >
None.gif        
< td  align ="center" > 包装 </ td >
None.gif        
< td  align ="center" > 需用日期 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 1 </ td >
None.gif    
< td >< span  class ="text2" >< nobr >
None.gif    贴片电路
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text1"  title ='ADE7755  63 7' >
None.gif    
< nobr >
None.gif    ADE7755ARS
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > ADI </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1"  title  ='世健国际贸易(上海)有限公司' >< nobr > 世健国际贸易(上海)有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1003 </ td >
None.gif    
< td  align ="center" > 59 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 2
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1"  title ='CC0805  0.1μ 168 7' >
None.gif    
< nobr >
None.gif    C2012X7R1H104KT
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > TDK </ td >
None.gif    
< td  align ="right" > 8000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1"  title  ='南京商络电子有限公司' >< nobr > 南京商络电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 8000 </ td >
None.gif    
< td  align ="center" > 4000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 3
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1"  title ='CC0805  20p 162 7' >
None.gif    
< nobr >
None.gif    C2012COG1H200JT
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > TDK </ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1"  title  ='南京商络电子有限公司' >< nobr > 南京商络电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 4000 </ td >
None.gif    
< td  align ="center" > 4000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 4
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1"  title ='CC0805  33N 765 7' >
None.gif    
< nobr >
None.gif    C2012X7R1H333KT
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > TDK </ td >
None.gif    
< td  align ="right" > 4000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1"  title  ='南京商络电子有限公司' >< nobr > 南京商络电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 4000 </ td >
None.gif    
< td  align ="center" > 4000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 5
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    压敏电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1"  title ='MY20K681  186 7' >
None.gif    
< nobr >
None.gif    GND20D681K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > 中普 </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1"  title  ='苏州中普电子有限公司' >< nobr > 苏州中普电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 1000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 6
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    晶振
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    HC-49U/S 3.579545MHz 20pf 带垫片
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > 海创 </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 武汉海创电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 200 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 7
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    安规电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    275V-X2-0.47μF
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > 昱电 </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海昱电电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 1000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 8
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    电解电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    CD112 16V 33μF
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > Samyoung </ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海文得贸易有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  align ="center" > 2000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 9
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    电解电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    CD112S 16V 220μF
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > Samyoung </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海文得贸易有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  align ="center" > 2000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 10
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    电解电容
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    CD112S 35V 470μF
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > Samyoung </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海文得贸易有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 1000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 11
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    插件电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RSF2BJ 470Ω
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > KOA </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海凡元电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 100 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 12
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    发光二极管
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    L-314LRC-A-SS
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > HUADING </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海沪鼎电子有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 1000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 13
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    插件二、三极管
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    1N4744A
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > MCC </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 励智电子(上海)有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 14
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    磁珠
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    B62
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > JONES </ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 北京中石伟业技术有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 15
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    晶振
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    CFS206 32.768kHz 20ppm/12.5pf
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > CITIZEN </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海创邦国际贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  align ="center" > 1000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 16
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-071K2
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 17
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805FR-071K2
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 18
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-0710R
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 19
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-0710K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 20
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-07150K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 21
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805FR-071K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 2000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 22
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-072K4
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 23
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-0720K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 24
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-072K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 25
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-07390K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 3000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 26
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-0739K
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif    
< tr >
None.gif    
< td  align ="center" > 27
None.gif    
</ td >
None.gif    
< td >
None.gif    
< span  class ="text2" >< nobr >
None.gif    贴片电阻
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td >
None.gif    
None.gif    
< span  class ="text1" >
None.gif    
< nobr >
None.gif    RC0805JR-074K7
None.gif    
</ nobr ></ span >
None.gif    
</ td >
None.gif    
< td  align ="center" > YAGEO </ td >
None.gif    
< td  align ="right" > 1000 </ td >
None.gif    
< td  width ="125" >< span  class ="text1" >< nobr > 上海衡谦贸易有限公司 </ nobr ></ span ></ td >
None.gif    
< td  align ="right" > 5000 </ td >
None.gif    
< td  align ="center" > 5000 </ td >
None.gif    
< td  align ="center" > 2005-11-04 </ td >
None.gif    
</ tr >
None.gif
None.gif
</ table >
None.gif
< table  width ="95%"  border =0  id ="tabFooter"  align =center  cellpadding =4 >
None.gif    
< tr >
None.gif        
< td > <!-- ct --> </ td >< td  align =right > 上海市XXX有限公司 </ td >
None.gif    
</ tr >
None.gif
</ table >
None.gif
< div  id ="divPrint" ></ div >
None.gif
< table  width ="95%"  align =center >
None.gif    
< tr >
None.gif        
< td  align =right >
None.gif            
< input  type =button  id ="bp"   onclick ="pp.beforePrint();this.disabled = true;document.getElementById('ap').disabled = false;"  value ="打印前"  style ="border:1px solid #000000" > &nbsp; < input  id ="ap"  type =button  onclick ="pp.afterPrint();this.disabled = true;document.getElementById('bp').disabled = false;"  value ="打印后"  style ="border:1px solid #000000"  disabled =true > &nbsp; < input  type =button  value ='打印'  onclick ="window.print()"  style ="border:1px solid #000000" >
None.gif        
</ td >
None.gif    
</ tr >
None.gif
</ table >
None.gif
</ BODY >
None.gif
</ HTML >
None.gif

转载于:https://www.cnblogs.com/ttyp/archive/2005/12/13/296528.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值