内的 javascript 函数-6ren"> 内的 javascript 函数-美好的一天, 最近,我正在处理某个 button 的页面。 (图像图标类似于退出页面的按钮)位于其右上角。 一旦用户点击此按钮,就会显示 button/icon屏幕上会弹出一条消息,提示“您确定要离开-6ren">
gpt4 book ai didi

javascript - "Are you sure to leave this page" 内的 javascript 函数

转载 作者:行者123 更新时间:2023-12-02 16:58:15 25 4
gpt4 key购买 nike

美好的一天,

最近,我正在处理某个 button 的页面。 (图像图标类似于退出页面的按钮)位于其右上角。 <img src="img/logout.png">一旦用户点击此按钮,就会显示 button/icon屏幕上会弹出一条消息,提示“您确定要离开此页面吗?是 | 否”,与 stackoverflow 类似。如果用户点击"is",那么他/她将被引导到另一个页面;如果否,那么他/她将被带回到他/她所在的当前页面。但我不知道这是否适用于 <img>标签。不管怎样,我尝试过运行这个。代码:

index.php

var answer = confirm("Are you sure you want to leave this page?");
if(answer){

window.location =("dashboard.php");
}
else{
window.location =("index.php");
}

然后我将函数调用放在 <img> 中标签看起来像这样:<img src="img/logout.png" onMouseUp="answer()">

结果:当我尝试运行它时,无论我按"is"还是“否”,弹出消息都会继续显示,它仍然在屏幕上。

我想我可能错过了一些东西......有人知道该怎么办吗?

最佳答案

您可以将其添加到页面的标题部分,而不是所有这些

window.onbeforeunload = function(){ return " are you sure! you want to leave this page"; }

关于javascript - "Are you sure to leave this page"<img> 内的 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25987983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com