将html导出pdf js,使用jspdf将HTML表导出为pdf

szakalq..

43

这是工作示例:

在头上

脚本:

function demoFromHTML() {

var pdf = new jsPDF('p', 'pt', 'letter');

// source can be HTML-formatted string, or a reference

// to an actual DOM element from which the text will be scraped.

source = $('#customers')[0];

// we support special element handlers. Register them with jQuery-style

// ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)

// There is no support for any other type of selectors

// (class, of compound) at this time.

specialElementHandlers = {

// element with id of "bypass" - jQuery style selector

'#bypassme': function(element, renderer) {

// true = "handled elsewhere, bypass text extraction"

return true

}

};

margins = {

top: 80,

bottom: 60,

left: 40,

width: 522

};

// all coords and widths are in jsPDF instance's declared units

// 'inches' in this case

pdf.fromHTML(

source, // HTML string or DOM elem ref.

margins.left, // x coord

margins.top, {// y coord

'width': margins.width, // max width of content on PDF

'elementHandlers': specialElementHandlers

},

function(dispose) {

// dispose: object with X, Y of the last line add to the PDF

// this allow the insertion of new lines after html

pdf.save('Test.pdf');

}

, margins);

}

和表:

CountryPopulationDateAge

Chinna1,363,480,000March 24, 201419.1India1,241,900,000March 24, 201417.4United States317,746,000March 24, 20144.44Indonesia249,866,000July 1, 20133.49Brazil201,032,714July 1, 20132.81

和按钮运行:

PDF

和在线工作示例:

单元格中的内容是否溢出以防止这种情况? (5认同)

效果很好,除了内部的任何HTML标签都没有显示.例如,如果我在单元格内部有一个"UL",它只是在不同的行上显示文本.如果我有一个带下划线或粗体的文本,它不显示它. (2认同)

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值