Adobe Form, 设置某页面元素, 只在最后一页显示

Javascript 脚本如下:

 

 var nPageNo =  xfa.layout.page(this);
 var nPageTtl = xfa.layout.pageCount();
 
 if ( nPageNo < nPageTtl ) {
   this.presence = "hidden";
 } else {
   this.presence = "visible";
 }

你可能感兴趣的:(JavaScript,脚本,Adobe)