Lodop在WEB頁面打印時對TABLE中td單元格內容采用format格式化顯示輸出的使用
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
LODOP中的ADD_PRINT_TABLE支持很多函數和計算方法,可以用tdata對table表格里額數據進行計算,用format對結果進行格式化。 format的作用,是對實際不存在的計算得來的結果進行格式化。 測試代碼: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>WEB打印控件LODOP</title> <script language="javascript" src="LodopFuncs.js"></script> </head> <body> <div id="a"> <table style="border-collapse:collapse;border:1;" > <colgroup><col width="81"><col width="150"> <tr> <td><font color="blue" format="#,##0.00">12341</font></td> <td><font color="blue" format="#,##0.00" tdata="12341">####</font></td> </tr> <tr> <td id="t1">3</td> <td id="t2">18</td> </tr> <tr> <td tdata="t1+t2">####</td> <td tdata="t1+t2" format="#,##0.00">####</td> </tr> </table> </div> <a href="javascript:prn1_preview()">打印預覽</a> <script language="javascript" type="text/javascript"> var LODOP; //聲明為全局變量 function prn1_preview() { LODOP=getLodop(); LODOP.PRINT_INIT("");//初始化 LODOP.ADD_PRINT_TABLE(5,5,300,1000,document.getElementById("a").innerHTML); LODOP.PRINT_DESIGN(); }; </script> </body> Lodop的TABLE中format格式化,是對實際不存在的計算得來的結果進行格式化,只能和tdata搭配使用,不能單獨格式化一個實際存在的數值。 圖示: 簡短問答: 如果是直接處理表格里的數據,參考樣例31http://www.c-lodop.com/demolist/PrintSample31.html這個是對計算結果進行處理的,不能對實際的某個數值處理,需要和tdata配合使用。 該文章在 2023/9/27 0:17:47 編輯過 |
關鍵字查詢
相關文章
正在查詢... |