单击按钮后,控件转到Javascript函数print()
,并打印表格。但是,它显示在打印表格之前几乎有20个换行符,我想防止出现这种情况。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var print=function()
{
document.write("<table border=5px>");
for(var i=1;i<1001;i++)
{
document.write("<tr>"+"<td>"+i+"</td>"+"</tr>"+"</br>");
}
document.write("</table>");
}
</script>
</head>
<body style="white-space: nowrap">
<input type="button" value="click here" onclick="print();" />
</body>
</html>
最佳答案
从字符串中删除结束
标记:
关于css - 如何在打印表格之前防止不必要的换行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34229361/