我创建了一个简单的 javascript 弹出窗口,它将要求用户等待 10 分钟或继续处理。在我的 php 站点中,我已经设置了一个条件,如果时间少于 10 分钟,那么只会出现弹出窗口。我需要为 javascript 编写另一个函数,即使在刷新页面后也只弹出 10 分钟,之后它不应该出现。因为我是 javascript 新手,所以我无法获得正确的功能来克服它。非常感谢您的帮助,谢谢
这是我的弹出代码:
function confirmation() {
var answer = confirm("You are trying to payment again, please wait for 10 mins to avoid duplicate payment. Click OK to wait and Cancel to continue pay")
if (answer){
alert("Thank you for waiting,please check your mail in 10 minutes, if you did not recieve any mail, proceed to purchase again.")
document.formDealPayment.submit();
}
else{
alert("Thank You.")
}
}