大家好我正在尝试将用户重定向到另一个页面,当用户决定重新加载时,如果要求他确认。该函数正在执行但window.location.href似乎无法正常工作。
window.onbeforeunload = function () {
return "Are you sure?";
}
window.onunload = function () {
submitexamonunload();
console.log("Too bad. Goodbye.");
}
function doneexam(){
if($("#std_store_exam").data("type") == "demo"){
console.log("Into done exam."+$("#std_store_exam").data("type")+"inner");
window.location.href = "demoexam.php";
}else{
storeres();
window.location.href = "studentdashboard.php";
}
尝试了一些可供选择和研究的选项。任何帮助表示赞赏。