这是我的代码
function destroy()
{
if (confirm("Are you sure?")) {
alert("User will be deleted")
}
else {
}
}
但我不想显示警报消息,我希望用户通过我自己的链接重定向。我应该写什么而不是alert
这样做?
这是我的代码
function destroy()
{
if (confirm("Are you sure?")) {
alert("User will be deleted")
}
else {
}
}
但我不想显示警报消息,我希望用户通过我自己的链接重定向。我应该写什么而不是alert
这样做?