如何使用链接而不是警报?
这是我的代码
function destroy()
{
if (confirm("Are you sure?")) {
alert("User will be deleted")
}
else {
}
}
但我不想显示警告消息,我希望用户通过我自己的链接重定向。 我应该写什么而不是alert
去做那件事?
if (confirm("Are you sure?")) {
window.location = 'your_link_here';
}
链接地址: http://www.djcxy.com/p/34743.html
上一篇: How to use link instead of alert?
下一篇: how to retrieve custom field at root directory for wordpress?