Facebox取消事件

facebox cancel event

本文关键字:事件 取消 Facebox      更新时间:2023-09-26

我使用facebox从MySQL删除数据(构造)。我想知道如何使用窗口中的取消按钮。当用户点击取消时,facebox必须卸载。

这是我在facebox中使用的代码。

Are You Sure You Want To Delete This URL?
<?php
include ('../db.php');
$id = $_GET['id'];
        if (isset($id))
        {
$query = "DELETE * FROM posts WHERE post_id='$id'";
}?>
<br/>
<br/>
<?php
echo '<a href="index.php?del='.$id.'" class="button" >Yes</a>';
echo '<a href="#" class="button" >Cancel</a>';

?>

我必须在取消按钮中使用的代码是什么?提前谢谢。

链接到facebox: http://defunkt.io/facebox/

jQuery(document).trigger('close.facebox');