窗体打开时暂停元刷新

时间:2014-01-15 07:03:56

标签: javascript php jquery html meta-tags

我有一个简单的html页面,每15秒刷新一次,并且有一个表单,用户可以在其中发表评论。但是当用户键入注释时,页面会刷新,因为元标记会在15个secons中刷新它。我想在用户点击表单并在表单中输入时暂停元刷新。这是我的元标记和表单。

   <meta http-equiv="refresh" content="15;url=http://xyyyyyyy.com/testn.php">

这是表格

     <form action="http://xtsss.com/testee.php" method="post" id="pc_form">
        <p>

      <div><input type="text" rows="15" style="width:800px" name="message" id="pc_message"></div>
        </p>
     <p>
       <input type="hidden" value="644" name="pid">

        <input type="hidden" value="Comment" name="submit" id="pc_submit">
      </p>
      </form>

1 个答案:

答案 0 :(得分:-1)

只需使用jquery

删除元素
$('meta[http-equiv=refresh]').remove();

然后在他完成打字时再次使用jquery ...

$('head').append('<meta http-equiv="refresh" content="15;url=http://xyyyyyyy.com/testn.php">');