2017-01-05 12 views

答えて

0

Print a div content using Jquery

function myFunction() 
{ 

    var divToPrint=document.getElementById('IdOfDivTobePrinted'); 

    var newWin=window.open('','Print-Window'); 

    newWin.document.open(); 

    newWin.document.write('<html><body onload="window.print()">'+divToPrint.innerHTML+'</body></html>'); 

    newWin.document.close(); 

    setTimeout(function(){newWin.close();},10); 

} 
ここからコードを選んだ私のテーブルを印刷する必要があります
関連する問題