gpt4 book ai didi

javascript - 具有重定向功能的 Windows 警报 javascript

转载 作者:行者123 更新时间:2023-11-30 12:21:05 25 4
gpt4 key购买 nike

这是我的脚本

<script>
function myAlert() {
alert("You have changed your username, you will be logged out in order changes to be applied");
}
</script>

这是我的按钮

<input type="submit" value="Save" name="btnPass" class="button" onclick="myAlert()";/>

我想知道是否有一种方法可以在单击警报中的“确定”按钮时添加重定向脚本。我怎样才能将它添加到我的脚本中?我怎样才能将它添加到我的脚本中?谢谢!

最佳答案

使用confirm而不是 alert

The Window.confirm() method displays a modal dialog with an optional message and two buttons, OK and Cancel.

function myAlert() {
var confirmed = confirm("You have changed your username, you will be logged out in order changes to be applied");

// If OK button is clicked
if (confirmed) {
window.location.href = 'google.com';
}

return false; // To stop form from submitting
}

关于javascript - 具有重定向功能的 Windows 警报 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31053996/

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