关闭后重置模态显示

时间:2015-10-13 11:44:43

标签: javascript php jquery reveal.js jquery-1.7

我在模板header.php中有一个模态:

<div id="modalRv">
   <?php echo $_SESSION['test']; ?>
   <a class='close'>Close</a>
</div>

这个div只加载一次。在这个模板中我做:

('a.close').on('click', function() {
    $('#modalRv').trigger('reveal:close');
});

在.js中我做了:

('#modalRv').reveal({              //  The  item  which  will  be  opened  with  reveal
    animation: 'fade',             //  fade,  fadeAndPop,  none
    animationspeed: 600,           //  how  fast  animtions  are
    closeonbackgroundclick: true,  //  if  you  click  background  will  modal  close?
    dismissmodalclass:  'close'    //  the  class  of  a  button  or  element  that  will  close  an  open  modal
});

这个想法是模板只加载一次,但$_SESSION['test']的值每次调用都会改变,但我只得到start的值。我试着这样做:

$('#modalRv').html("");

但情况相同。对不起我的英语不好。 Thx提前

0 个答案:

没有答案