gpt4 book ai didi

javascript - 只打印
内容的特定部分

转载 作者:行者123 更新时间:2023-11-29 23:27:11 24 4
gpt4 key购买 nike

我有以下 JavaScript 代码来打印内容

<script type="text/javascript">

function Print(print)
{
Popup($(print).html());
}

function Popup(data)
{
var mywindow = window.open("", "print");
mywindow.document.write("<html><head><title>Report</title>");
mywindow.document.write("</head><body>");
mywindow.document.write("<div align='center'>");
mywindow.document.write(data);
mywindow.document.write("</div>");
mywindow.document.write("</body></html>");

mywindow.print();
mywindow.close();

return true; }

</script>

在我的 HTML 中,我有以下代码:

   <html>
<body>
<p><a href="javascript:Print('#print')">Print</a></p>
<div id="print">
<h1>Report</h1>
<table>
<tr><th>Date</th><th>Remarks</th><th>Amount</th><th>Actions</th></tr>
<tr>
<td>10/11/2014</td>
<td>Hello</td>
<td>$14</td>
<td>Edit</td>
</tr>
</table>
</div>
</body>
</html>

我只想打印前 3 列。我不想打印第四列“操作”。当我尝试使用上面的代码打印内容时,它会打印所有 4 列。请帮我解决以下问题。

最佳答案

您可以简单地将样式设置为不显示该 td 的 id

HTML 内部:

....
<th id="act">Actions</th>
....
<td id="act">Edit</td>

JS 内部:

mywindow.document.write("<html><head><style>#act{display:none;}</style><title>Report</title>");

关于javascript - 只打印<div>内容的特定部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26866580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com