如何使用链接而不是警报?

时间:2013-02-20 09:30:32

标签: javascript

这是我的代码

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

    else {

    }

}

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

1 个答案:

答案 0 :(得分:2)

if (confirm("Are you sure?")) {
    window.location = 'your_link_here';
}