所以我只是开始一些小脚本,因为在工作中丢失一个程序并且必须转换PDF格式的所有内容。目前我正在处理的表单有2个页面需要相同,但是当我在第一个页面框中没有任何内容时,我遇到了第二页文本框清除的问题。我在第一个框中使用以下脚本:
//Set the vars one and two:
var one = this.getField("Text1");
var two = this.getField("Text2");
//next check if two is blank and if so, populate it with one’s value
if(two.value==''||two.value==null){two.value=one.value}
文本1是第1页框,文本2是第2页相同的框,我只在页面上发布了一个模糊的框,所以当你点击它时复制到第2页。但是当你清除文本1时,文本2不清楚。任何帮助都会受到赞赏,因为我仍然非常厌恶脚本。
答案 0 :(得分:0)
var one = this.getField("Text1");
var two = this.getField("Text2");
// if one's text is empty then empty two's text as well
if(one.value==''|| one.value==null){two.value='';}
// if one's text is not empty then check if two's is empty to fill it with one's text
else if(two.value==''|| two.value==null){two.value=one.value;}