HTML中有很多标签和属性,其中最常用的标签之一是表格标签,它可以方便地创建和设计网页中的表格。而表格中的内容都是通过
要打印
<!DOCTYPE html> <html> <head> <title>Print Table Row</title> </head> <body> <table> <tr id="myRow"> <td>1</td> <td>2</td> <td>3</td> </tr> </table> <button onclick="printRow()">Print Row</button> <script> function printRow() { var myRow = document.getElementById("myRow").outerHTML; var myWindow = window.open('','','width=200,height=100'); myWindow.document.write('<html><head><title>Printed Row</title></head><body>'); myWindow.document.write(myRow); myWindow.document.write('</body></html>'); myWindow.document.close(); myWindow.focus(); myWindow.print(); myWindow.close(); } </script> </body> </html>
总之,在HTML中打印
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。