由于某种原因,这个表单不断刷新页面,我不知道为什么因为我在页面上有另一个表单,具有不同的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;
});
});
答案 0 :(得分:3)
确保在提交表单后立即preventDefault()
。在你这样做之前不要做任何其他事情(比如调用Ajax)。
E.g:
$("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
});
答案 1 :(得分:0)
使用输入类型按钮而不是提交
<input type="button" value=" Save " name="saveButton" id="saveButton" />
答案 2 :(得分:0)
在click事件处理结束时的简单返回false中执行操作,例如:
$('form input[type="submit"]').click(function() {
....
return false;
})