我有两个div,通过单击按钮打印到pdf:
var newWin = window.frames["print_frame"];
newWin.document.write('<head><link rel="stylesheet" media="print" href="Content/bootstrap.css" type="text/css"><link rel="stylesheet" media="print" href="Content/printFixes.css?v=1.0.1.5" type="text/css"/></head><body onload="window.print()">' + $('#containerpdf').wrap('<div/>').parent().html() + '</body>');
newWin.document.close();
在pdf中,它看起来像这样(div一和二):
这些div实际上是html编辑器,我刚删除了编辑器工具的所有样式,因此可以在打印时正确显示。
所以我的问题是,是否有办法将(1)中溢出的文本继续放在(2)上;还把(2)中的溢出文本放在第二页上可以从一边到另一边显示?这可能吗?