创建一个 Acrobat 按钮来插入当前日期
我正在 Acrobat 中构建一个报告表单,并有一个日期字段,我想通过按页面上的表单按钮来更新该字段。 (我想到的是一个非打印按钮。)
我需要在按钮中放置什么 JavaScript 才能使其在日期表单字段中插入当前日期。
I'm building a report form in Acrobat and have a date field that I want to update by pressing form button on the page. (What I was thinking was a non-printing button.)
What Javascript would I need to place in the button to make it insert the current date in the date form field.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择:在按钮的“操作”选项卡上输入 JS-
var fld = this.getField("datefield");
fld.value = util.printd("yyyy/mm/dd",new Date());
希望这有帮助,
迪米特里
www.pdfscripting.com
One option: on the Actions tab of the button enter JS-
var fld = this.getField("datefield");
fld.value = util.printd("yyyy/mm/dd",new Date());
Hope this helps,
Dimitri
www.pdfscripting.com