<a class='iframe' href="delete.php" onClick="chkDel()">
我在ifbox中使用了iframe, 点击链接后,我会弹出一个确认框,如代码:
function chkDel(){
if(!confirm("delete?")){
//how to stay in the current state?
//and do not run the delete page
}
}
答案 0 :(得分:0)
如果用户取消,则返回false。返回false将阻止执行。
function chkDel(){
if(!confirm("delete?")){
return false;
}
}
您甚至可以在onClick属性中的一行中执行此操作。
onClick="return confirm('Are you sure about deleting this?');"