0

由于某种原因,此表单不断刷新页面,我不知道为什么页面上有另一个表单,其 id 不同但脚本相同,并且它不刷新。我试过使用 preventDefault(); 也一样,但它也不起作用。有人可以告诉我这个表格或脚本哪里出错了吗?

谢谢

页面顶部

<script type="text/javascript" src="../JS/jquery.js"></script>
<script type="text/javascript" src="../JS/jquery-ui.js"></script>
<script type="text/javascript" src="../JS/member_info.js"></script>

表格

<form id="central">
<table width="40%" class="search">
<tr>
<td width="39%" align="left"><p><b>Inception Date:</b></p><input size="10" maxlength="10" id="creddate" type="text" value="<?php echo $creddate; ?>" /></td>
<td width="41%" align="left"><p><b>Surety:</b></p><input size="15" maxlength="15" id="surety" type="text" value="<?php echo $surety; ?>" /></td>
<td width="20%" align="left"><p><b>Credit Limit:</b></p><input size="15" maxlength="15" id="creditlimit" type="text" value="<?php echo $credlimit; ?>" /></td>
</tr>
</table>
<br />
<table style="margin:0 auto">
<tr>
<td><input type="hidden" id="code" size="12" readonly="true" value="<?php echo $code; ?>" /></input></td>
<td><input type="submit" value=" Save " /></input></td>
<td><p align="center" id="central_status"></p></td>
</tr>
</table>
</form>

脚本 - 从 member_info.js 链接

$(document).ready(function(){
  $("form#central").submit(function() {
    var code = $('#code').val();
    var inception = $('#creddate').val();
    var surety = $('#surety').val();
    var credit = $('#creditlimit').val();
    $.ajax ({
      type: "POST",
      url: '../members/edit_central.php',
      data: {code: code, creddate: creddate, surety: surety, creditlimit: creditlimit},
      success: function(data) {
        $('#central_status').html(data);
      }
    });
    return false;
  });
});
4

3 回答 3

3

确保您preventDefault()在提交表单后立即。在你这样做之前不要做任何其他事情(比如调用 Ajax)。

例如:

$("form#central").submit(function(e) {
    e.preventDefault();

    // Your other long running (possibly async)
    // operations here
}

此外,请确保您没有将表单动态添加到页面。如果这样做,您需要实时附加提交事件。像这样:

$(document).on('submit', 'form#central', function(e){
    // same as above
});
于 2013-10-09T09:21:32.503 回答
0

in simple return false at the end of the click event handling do the trick for example :

$('form input[type="submit"]').click(function() {
....
return false;
})
于 2013-10-09T09:35:04.870 回答
0

使用输入类型按钮 insted 提交

<input type="button" value=" Save " name="saveButton" id="saveButton" />
于 2013-10-09T09:22:46.823 回答