【问题标题】:How to add HyperLink with JsPDF?如何使用 JsPDF 添加超链接?
【发布时间】:2016-06-20 18:18:08
【问题描述】:

是否可以在jsPDF 中添加HyperLink

这是我正在使用的代码。

    var doc = new jsPDF('p', 'pt'); 
    doc.fromHTML(
     '<a href="http://www.google.com">Click Here</a>',
     35,
     25,
     {
         'width': 180, 'elementHandlers': elementHandler
     });
     doc.save("info.pdf");

【问题讨论】:

  • 您好,您找到解决方案了吗?

标签: jspdf


【解决方案1】:

我在过去两个小时生病后得到了解决方案。 jsPDF 中还有一种方法不太流行,即

doc.textWithLink('Click here', x, y, { url: 'http://www.google.com' });

希望对某人有所帮助:)

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-12-03
    • 2010-09-10
    • 2014-01-28
    • 2017-08-06
    • 2014-01-10
    • 2023-02-06
    相关资源
    最近更新 更多