1

我有一个 Acrobat PDF,一位同事希望在 Acrobat 为您提供的简单选项之外添加一些表单验证,而无需使用 javascript。据我所知,将需要 Javascript 来执行此操作。我认为该行为应该可以通过单选按钮组的“属性”->“操作”中的“添加操作->MouseDown->运行 Javascript”选项来完成。

基本上我有一组带有 3 个按钮的单选按钮。如果按下 buttonA,我希望 fieldA 是必需的。如果按下 buttonB,我希望 fieldB 是必需的。buttonC/fieldC 也一样。

我知道我的伪代码会是什么样子,但我无法将它翻译成 javascript

onSelectionChanged(selection) {
    fieldA.required = false;
    fieldB.required = false;
    fieldC.required = false;

    if (selection == 'A') { fieldA.required = true; }
    if (selection == 'B') { fieldB.required = true; }
    if (selection == 'C') { fieldC.required = true; }
}

谁能指出我正确的方向?先感谢您。

4

1 回答 1

0

做了更多的挖掘,这是最终的解决方案(放置在单选按钮组的“MouseUp->Run a Javascript”中:

var f = this.getField("ServiceType");

var ins = this.getField("InstallationDateTime");
var rem = this.getField("RemovalDateTime");
var ser = this.getField("ServiceRequestDateTime");

console.println(f.value);

ins.required = false;
rem.required = false;
ser.required = false;

if (f.value === "Install") {
    ins.required = true;       
}
if (f.value === "Removal") {
    rem.required = true;       
}
if (f.value === "Service") {
    ser.required = true;       
}

考虑到所有事情都很容易,找到以下对于调试非常有用:

f = this.getField("myField");

for ( var i in f ) {
    try {
        if ( typeof f[i] != "function" ) {    // Do not list field methods
            console.println( i + ":" + f[i] ) 
        }
    } catch(e) {
    }           // An exception occurs when we get a property that does not apply to this field type.
}    
于 2013-03-29T14:35:01.900 回答