gpt4 book ai didi

PDF 中的 Javascript

转载 作者:行者123 更新时间:2023-11-29 22:42:01 24 4
gpt4 key购买 nike

我目前正在创建一个 PDF 文档,其中包含我想发布到 aspx 页面中的字段。现在这一点我已经成功地使用带有添加行为“提交表​​单”的按钮。我想对此进行调整,以便在提交表单之前弹出一条确认消息,单击“否”将中止提交,单击"is"将提交表单。

我认为我需要在 javascript 中执行此操作,所以我一直在研究并提出以下建议;

var answer = app.alert("Are you ready to submit this form now?", 2, 2, "Confirmation");
if(answer!=4)
this.submitForm("http://localhost:8018/quote/apply.aspx");

我认为我的 submitForm 函数很垃圾。我该如何改进它?

最佳答案

找到它了,我很密集。答案就在眼前。

第一个 IF block 没有“THEN”关键字。

不知何故,这通过了语法检查器。

答案是;

var answer = app.alert("Are you ready to submit this form now?", 2, 2, "Confirmation");
if(answer==4)
this.submitForm("http://localhost:8018/quote/apply.aspx");

关于PDF 中的 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2065578/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com