使用 JavaScript 迭代 PDF 表单中的所有字段
我想修改 PDF 表单中所有字段的一些属性,以响应用户单击按钮。
哪个属性或方法将返回字段集合以便我可以迭代它们?
I would like to modify some properties for all fields in a PDF form in response to the user clicking a button.
Which property or method will return me the collection of fields so that I can iterate over them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有字段集合我还没有找到。不过,有一种方法可以迭代所有字段。
doc 对象的 numFields 属性给出了字段的数量,
getNthFieldName(index)
返回具有该索引的字段的名称,getField(fieldName) 返回该名称的字段。If there is a collection of fields I still haven't found it. There is a way to iterate over all the fields though.
The
numFields
property of the doc object gives the number of fields,getNthFieldName(index)
returns the name of the field with that index and getField(fieldName) returns the field of that name.