这是我的代码
function destroy()
{
if (confirm("Are you sure?")) {
alert("User will be deleted")
}
else {
}
}
但我不想显示警告消息,我希望用户可以通过我自己的链接重定向。
我应该写什么而不是alert
呢?
答案 0 :(得分:2)
if (confirm("Are you sure?")) {
window.location = 'your_link_here';
}