在输入文本时如何更改 PDF 表单域背景?

How do I change PDF form field backgrounds when text is entered into them?

我正在创建一个 PDF 表单以分发给其他人。当没有在表单的任何字段中输入文本时,我希望它保持透明,但是当有人在其中输入文本时,我希望该字段的背景颜色变为白色。

I found this page 描述了如何使用 JavaScript 执行此操作,因此我将其添加到我的 PDF 文档 JavaScripts 中,但它不起作用。默认情况下,字段继续具有相同的透明背景。

无论有无 JavaScript,我如何实现我正在寻找的东西?我正在使用 Acrobat Pro DC。谢谢!

将此脚本放入字段的自定义格式脚本中

/* Turns off default field highlighting. Normally you'd put this in a doc level script it's just here for completeness */
app.runtimeHighlight = false;
/* The rest of this belongs in the custom format script */
var field = event.target;
if (field.value == field.defaultValue) {
    /* set the fillColor is the field value is the same as the default (generally an empty string) */
    field.fillColor = color.ltGray
}
else {
    field.fillColor = color.transparent
}

我的功能正常 example file here