我在jsp中创建了销售凭证表单。如果客户未注册,则需要先注册,以便我将表单中的链接发送给customer.jsp
在所有验证之后提交客户条目时,它需要返回salesvoucher.jsp
有人可以告诉我怎么做吗?
答案 0 :(得分:0)
我在Sales Voucher jsp中添加了按钮以打开客户主jsp而不是链接,并在按钮的点击事件上调用ShowModalDialog()方法。
<input id="createcustomer" type="button" value="Create New Customer" onclick="window.showModalDialog('http://localhost:8080/AA/CustomerMaster.jsp','self');">
在Customer Master中使用ajax存储记录。要重新加载并恢复到销售凭证,我在Customer Master的主体中使用了window.opener.location.reload()
<body onunload="window.opener.location.reload(); self.close();">