TCPDF 和 JavaScript
我有一个用 TCPDF+XHTML 生成的 pdf。现在我还需要使用一些javascript。 tcpdf-site 上有一些 javascript 示例,但它们与此无关,但从这些示例中我注意到 javascript 的语法与我习惯的有些不同。
基本上我想要的是有一个文本字段,如果你在其中输入一些内容,文本也会出现在其他地方。但我不知道如何让事件与这个文本字段一起工作。
我使用 $pdf->writeHTML(...) 进行 xhtml 输出,并使用 $pdf->IncludeJS($js) 进行 JS 输出。
I've have a pdf generated with TCPDF+XHTML. Now I need to use some javascript also. There are some javascript examples at tcpdf-site, but they aren't relevant for this, but from those examples I've noticed that the javascript has a bit different syntax than I'm used to.
Basically what I want is to have textfield, and if you type something in it, the text appears at other places too. But I have no idea how to get events to work with this textfield.
I do the xhtml output whit $pdf->writeHTML(...) and JS output with $pdf->IncludeJS($js).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
恕我直言,PDF 中的 JavaScript 非常不一致。建议您避免使用它,除非真的、真的、真的有必要。
IMHO Javascript in PDFs is terribly inconsistent. Recommend you avoid it unless it's really, really, really necessary.