使用 JavaScript 迭代 PDF 表单中的所有字段

发布于 2024-09-16 13:31:36 字数 72 浏览 6 评论 0原文

我想修改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吻风 2024-09-23 13:31:36

如果有字段集合我还没有找到。不过,有一种方法可以迭代所有字段。

doc 对象的 numFields 属性给出了字段的数量,
getNthFieldName(index) 返回具有该索引的字段的名称,getField(fieldName) 返回该名称的字段。

for (var fieldNumber = 0; fieldNumber < numFields; fieldNumber ++)
{
  getField(getNthFieldName(fieldNumber)).value = 'Scripty Was Here';
}

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.

for (var fieldNumber = 0; fieldNumber < numFields; fieldNumber ++)
{
  getField(getNthFieldName(fieldNumber)).value = 'Scripty Was Here';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文