嗨,我在 if(confirm.... 条件下编写了 ajax 调用,但它不会进入我的 ajax 页面。如果我在 if(confirm(...) 之外编写 $.get ,那么它工作正常。
问题是什么。请告诉我一些。
function ConfirmSave() {
if (confirm("Do You Want to Save the test?"))
{
$.get('../Common/Ajax.aspx',{action:"UpdateExamDuration",UserExamMapID:UserExamMap});
}
document.location.href = "../Reports/Report-Card.aspx";
}