如何禁用Colorbox iframe中的链接?

时间:2014-06-27 12:24:59

标签: javascript colorbox

<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
}
}

1 个答案:

答案 0 :(得分:0)

如果用户取消,则返回false。返回false将阻止执行。

function chkDel(){ 
    if(!confirm("delete?")){
        return false;
    }
}

您甚至可以在o​​nClick属性中的一行中执行此操作。

onClick="return confirm('Are you sure about deleting this?');"