0

这是我的代码

function destroy()
{
    if (confirm("Are you sure?")) {
        alert("User will be deleted")
    }

    else {

    }

}

但我不想显示警报消息,我希望用户通过我自己的链接重定向。我应该写什么而不是alert这样做?

4

1 回答 1

2
if (confirm("Are you sure?")) {
    window.location = 'your_link_here';
}
于 2013-02-20T09:31:47.470 回答