提交后避免fancybox iframe关闭?

时间:2011-06-14 12:18:33

标签: jquery forms iframe fancybox

这真的很奇怪,它不应该以这种方式发生,但确实如此。

我叫我的FB:

 <p>Haz <a class="recupera" href="recover.php">click aquí</a> si has olvidado tu contraseña.</p>

 $("a.recupera").fancybox({
        'scrolling'     : 'no',
        'titleShow'     : false
    });

在recover.php里面我有一个表单,我处理那里的所有内容,当我在浏览器中打开它并且一切正常时它会起作用:

<?
//DOCTYPE and all that jazz here
if(!empty($_POST['email'])){

//does stuff in DB

}else{
 ?>
 <div id="logeando">
<h2 class="titulo-cufon">Recuperar contraseña</h2>
<form method="post" action="" id="loginform">
<fieldset>
    <label class="titulo-cufon" for="email">E-mail:</label>
    <input type="text" name="email" id="email" /><br />

    <input type="submit" name="register" id="register" class="large button gray input" value="Enviar" />
</fieldset>
</form>
 </div>
 <?}?>

每次点击提交按钮,我的fancybox都会关闭。这是一个iframe,为什么会这样做?我该怎样预防呢?是我的提交关闭它吗?从我读过的内容来看,人们通常会要求对方(iframe在提交后关闭,而不是阻止它)

1 个答案:

答案 0 :(得分:2)

指定fancybox正在iframe中运行。

 $("a.recupera").fancybox({
        'scrolling'     : 'no',
        'titleShow'     : false,
        'type'      : 'iframe'
    });