0
フォームフィールドをプログラミングして、フィールドが入力されるまで次のフィールドに進むことができないようにする必要があります。メッセージがポップアップしますが、ユーザーは引き続き処理を続けることができます。 ここに私が持っているものがあります。ユーザーがAcrobat XIで情報を入力するまでユーザー入力の要求をループする方法
var ConstructionType = this.getField( "ConstructionType")。value;
if(ConstructionType == "New Residential")
app.alert("You must enter the Residential Finished Floor Area field before continuing");
else if (ConstructionType == "Accessory Suite")
app.alert("You must fill in the Residential Finished Floor Area field before continuing");
わからないこれは役立ちますが、チェックアウトのHTML5の属性は '動作しませんでした –
をrequired'が、それはGoogleで異なっ言葉に私に私の検索をインスピレーションを与えた場合。ありがとう –
あなたが答えを見つけたら、他の人が参照できるように自分自身の質問に答えてください:) –