【发布时间】:2015-07-20 01:46:49
【问题描述】:
我创建了一个syntax highlighter,我想要一个保存为 PDF 的选项。我查看了this SO question,但下载它并没有保留 CSS 样式,这破坏了下载突出显示的文件的意义。有没有办法可以在保持 CSS 的同时将我的 pre 元素保存为 PDF?
HTML:
<pre id='output'> (highlighted portion) </pre>
<button id='save'>Save as PDF</button>
JS:
$('#save').click(function(){
//this is what I need help with
});
您可能已经注意到,我正在使用 jQuery,如果这很重要的话。
【问题讨论】:
-
我只想打印
pre,而不是整个页面
标签: javascript jquery html css pdf