2010-03-26 82 views
0

這是我的程序。當我提交打印按鈕時,我可以打印數據,但它們不以表格格式對齊,我需要打印格式。 ..How我可以打印以正確的格式爲什麼我打印的數據不是表格格式

<html> 
<head> 
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.min.js" > </script> 
<script type="text/javascript"> 

    function PrintElem(elem) 
    { 
     //alert('ddd'); 
     Popup($(elem).text()); 
    } 

    function Popup(data) 
    { 
     var mywindow = window.open('', 'mydiv', 'height=400,width=600'); 
     mywindow.document.write('<html><head><title>my div</title>'); 
     /*optional stylesheet*/ //mywindow.document.write('<link rel="stylesheet" href="main.css" type="text/css" />'); 
     mywindow.document.write('</head><body >'); 
     mywindow.document.write(data); 
     mywindow.document.write('</body></html>'); 
     mywindow.document.close(); 
     mywindow.print(); 
     return true; 
    } 

</script> 
</head> 
<body> 

<div id="mydiv"> 
    <table width="200" border="1"> 
    <tr> 
    <td>sss</td> 
    <td>sssss;</td> 
    <td>snssbsp;</td> 
    </tr> 
    <tr> 
    <td>ssss;</td> 
    <td>sssnbsp;</td> 
    <td>snbsp;</td> 
    </tr> 
    <tr> 
    <td>snbsp;</td> 
    <td>snbsp;</td> 
    <td>snbsp;</td> 
    </tr> 
</table> 

</div> 


<input type="button" value="Print Div" onClick="PrintElem('#mydiv')" /> 

</body> 
</html> 

回答

1

你調用你的元素,它返回刪除任何HTML標記元素的純文本內容的text方法。試試這個:

function PrintElem (elem) 
{ 
    Popup($(elem).html()); 
} 
+0

它爲我工作亞爾偉大想着 – udaya 2010-03-26 06:21:57

+0

或者也許innerHtml()? – 2010-03-26 06:22:16

+0

你知道我試過用桌子上的標籤給它打破了嗎 ......... 最後你說得那麼簡單 – udaya 2010-03-26 06:24:12