简体   繁体   English

如何在Colorbox iframe中禁用链接?

[英]how to disable the link in Colorbox iframe?

<a class='iframe' href="delete.php" onClick="chkDel()">

I have use the iframe with Colorbox, After click the link , i would to popup a confirm box like the code: 我将iframe与Colorbox一起使用,单击链接后,我将弹出一个类似于代码的确认框:

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

Return false if the user cancels. 如果用户取消,则返回false。 Returning false will prevent the execution. 返回false将阻止执行。

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

You can even do it in one line inside the onClick attribute. 您甚至可以在o​​nClick属性内的一行中完成此操作。

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM