Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个自动计算/递增我的日期的 Acrobat 表单。我需要这样做的 javascript 是什么?
我的解决方案:
var d1 = new Date(this.getField("Starting").value); var num = d1.valueOf(); num += 1000 * 60 * 60 * 24; var d2 = new Date(num); event.value =util.printd("m/d/yy", d2);