如何在Colorbox iframe中禁用链接

how to disable the link in Colorbox iframe?

本文关键字:链接 iframe Colorbox      更新时间:2023-09-26
<a class='iframe' href="delete.php" onClick="chkDel()">

我使用了带有Colorbox的iframe,点击链接后,会弹出一个确认框,代码如下:

function chkDel(){ 
if(!confirm("delete?")){
//how to stay in the current state? 
//and do not run the delete page
}
}

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

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

你甚至可以在onClick属性内用一行来完成。

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