我正在构建一个使用mysql作为后端的简单网站。我有一个表单,其中有两个按钮,其中一个从db搜索数据并使用Ajax填充页面另一个按钮将新值更新为db。现在我的问题是我不能将这两个按钮都用作“提交”按钮。
Ajax方法& Html表格:
<script type="text/javascript">
$(document).ready(function(){
$(document).on('submit', '#update-form', function(){
var data = $(this).serialize();
$.ajax({
type : 'POST',
url : 'search.php',
data : data,
success : function(data){
$(".display").html(data);
}
});
return false;
});
});
</script>
<body>
<div id="update" class="tab-pane fade">
<form id="update-form" role="form" class="container" method="post" action="search.php">
<h3>Update details</h3>
<table class="display">
<tr class="space">
<td><label>File Number:</label></td>
<td><input type="text" class="form-control" name="filenum" required></td>
</tr>
</table>
<button type="submit" class="btn btn-default text-center" name="search_btn" >Search</button>
<button type="submit" class="btn btn-default text-center" name="submit_btn" formaction="update.php">Update</button>
</form>
</div>
</body>
现在我想知道如何修改上面的代码,以便我可以将这两个按钮用作提交。
尝试使用 formaction
,但由于使用了Ajax方法,它无效。
答案 0 :(得分:3)
你可以通过多种方式做到这一点。
第一个出现在我脑海中的是: 将按钮类型更改为按钮而不是提交并添加onclick属性
<button type="button" onclick="submitForm('search.php')">Search</button>
<button type="button" onclick="submitForm('update.php')">Update</button>
然后在你的javascript中:
function submitForm(url){
var data = $("$update-form").serialize();
$.ajax({
type : 'POST',
url : url,
data : data,
success : function(data){
$(".display").html(data);
}
});
}
答案 1 :(得分:1)
在jquery中,您可以触发提交。检查一下:https://api.jquery.com/submit/
你创建一个div或者其他在jquery中你为这个div添加一个监听器:
<div id="button">Here my button</div>
在jquery中
$('#button').on('click', function(){
$('#update-form').submit()
}
答案 2 :(得分:1)
<form id="update-form">
...
...
<button type="button" class="submitForm" formaction="search.php">Search</button>
<button type="button" class="submitForm" formaction="update.php">Update</button>
</form>
然后你的JS:
$('.submitForm').click(function(){
$.ajax({
method: 'post',
url: $(this).attr('formaction),
data: $("#update-form").serialize(),
...
...
success: function(){ }
});
});
答案 3 :(得分:0)
$(document).ready(function(){
$(document).on('submit', '#update-form', function(){
var data = $(this).serialize();
$.ajax({
type : 'POST',
url : 'search.php',
data : data,
success : function(data){
$(".display").html(data);
}
});
return false;
});
$(document).on('click', '#update-btn', function(){
var data = $("input[name='filenum']").val(); //Handle how you want
$.ajax({
type : 'POST',
url : 'update.php',
data : data,
success : function(data){
$(".display").html(data);
}
});
});
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body>
<div id="update" class="tab-pane fade">
<form id="update-form" role="form" class="container" method="post" action="search.php">
<h3>Update details</h3>
<table class="display">
<tr class="space">
<td><label>File Number:</label></td>
<td><input type="text" class="form-control" name="filenum" required></td>
</tr>
</table>
<button type="submit" class="btn btn-default text-center" name="search_btn" >Search</button>
<button form='forn-is-not-exist' class="btn btn-default text-center" name="submit_btn" id="update-btn" >Update</button>
</form>
</div>
</body>
&#13;
检查出来