我目前正在创建一个PDF文档,其中包含我要发布到aspx页面的字段。现在,我已经成功地使用了一个添加了“提交表单”行为的按钮。我希望在提交表单之前调整此项,然后弹出确认消息,单击“否”将中止提交,单击“是”将提交表单。
我想我需要在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函数是垃圾。我该如何改进呢?
答案 0 :(得分:2)
第一个IF块没有'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");