如何使用 jQuery Ajax 使用动态 html 输入文本框提交表单
How to submit form with dynamic html Input texbox using jQuery Ajax
我正在使用 jQuery 创建动态多个 HTML 输入框并填充值,填充后我想更新每个文本框中的产品价格并将具有更新值的表单提交给服务器使用 ajax。我遇到以下代码的问题,如果我在文本框中编辑产品价格并单击“更新”按钮,它会调用我的 ajax 函数,但更新后的产品价格不会发送到服务器。我得到空值。
如果我点击“更新”按钮,我得到以下代码的空数组:
JSON.stringify($("#updateNameForm").serializeArray())
出于某种原因,我的动态文本框更新的值没有进入 ajax 方法。
请找到我的以下代码 - 有人可以帮助我在这里做错什么以及如何解决问题。
完整代码:
JSON 来自服务器端:
[{
"productName": "Product1",
"productPrice": "323"
}, {
"productName": "Product2",
"productPrice": "4333"
}]
HTML代码:
<div class="content-wrapper">
<section class="content">
<div class="row">
<div class="col-md-9">
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">My Form</h3>
</div>
<!-- /.box-header -->
<form id="updateNameForm" class="form-horizontal" method="post">
<div class="box-body">
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox" id="editName" class="input_control" /> <strong> Edit</strong>
</label>
</div>
</div>
</div>
<div class="box-footer">
<button type="submit" class="btn btn-default">Cancel</button>
<input id="updateName" type="button" name="updatea" value="Update" class="btn btn-info pull-right">
</div>
</form>
</div>
</div>
</div>
</section>
</div>
更新Ajax
$("#updateName").on('click', function() {
$.ajax({
url: 'myApp/updateProduct',
type: "PUT",
dataType: 'json',
data: JSON.stringify($("#updateNameForm").serializeArray()),
success: function(result) {
alert(result);
},
error: function(e) {
console.log(e.responseText);
}
});
});
loadProduct函数
function loadProduct() {
$.ajax({
url: 'myApp/getProduct',
type: "GET",
dataType: 'json',
success: function(productJson) {
$.each(JSON.parse(JSON.stringify(productJson)), function(idx, obj) {
var formgroup = $("<div/>", {
class: "form-group"
});
formgroup.append($("<label>", {
class: "col-sm-2 control-label",
text: obj.productName
}));
var colsm = $("<div/>", {
class: "col-sm-10"
});
var input = $("<input/>", {
type: "text",
class: "form-control",
id: obj.productName + "Id",
value: obj.productPrice
});
colsm.append(input);
formgroup.append(colsm);
$(".box-body").append(formgroup);
});
},
error: function(e) {
console.log(e.responseText);
}
});
}
谢谢!
您还没有在输入栏输入 name
。
var input = $("<input/>", {
type: "text",
name: "productPrice",
class: "form-control",
id: obj.productName + "Id",
value: obj.productPrice
});
试试上面的代码。
我正在使用 jQuery 创建动态多个 HTML 输入框并填充值,填充后我想更新每个文本框中的产品价格并将具有更新值的表单提交给服务器使用 ajax。我遇到以下代码的问题,如果我在文本框中编辑产品价格并单击“更新”按钮,它会调用我的 ajax 函数,但更新后的产品价格不会发送到服务器。我得到空值。
如果我点击“更新”按钮,我得到以下代码的空数组:
JSON.stringify($("#updateNameForm").serializeArray())
出于某种原因,我的动态文本框更新的值没有进入 ajax 方法。
请找到我的以下代码 - 有人可以帮助我在这里做错什么以及如何解决问题。 完整代码:
JSON 来自服务器端:
[{
"productName": "Product1",
"productPrice": "323"
}, {
"productName": "Product2",
"productPrice": "4333"
}]
HTML代码:
<div class="content-wrapper">
<section class="content">
<div class="row">
<div class="col-md-9">
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">My Form</h3>
</div>
<!-- /.box-header -->
<form id="updateNameForm" class="form-horizontal" method="post">
<div class="box-body">
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox" id="editName" class="input_control" /> <strong> Edit</strong>
</label>
</div>
</div>
</div>
<div class="box-footer">
<button type="submit" class="btn btn-default">Cancel</button>
<input id="updateName" type="button" name="updatea" value="Update" class="btn btn-info pull-right">
</div>
</form>
</div>
</div>
</div>
</section>
</div>
更新Ajax
$("#updateName").on('click', function() {
$.ajax({
url: 'myApp/updateProduct',
type: "PUT",
dataType: 'json',
data: JSON.stringify($("#updateNameForm").serializeArray()),
success: function(result) {
alert(result);
},
error: function(e) {
console.log(e.responseText);
}
});
});
loadProduct函数
function loadProduct() {
$.ajax({
url: 'myApp/getProduct',
type: "GET",
dataType: 'json',
success: function(productJson) {
$.each(JSON.parse(JSON.stringify(productJson)), function(idx, obj) {
var formgroup = $("<div/>", {
class: "form-group"
});
formgroup.append($("<label>", {
class: "col-sm-2 control-label",
text: obj.productName
}));
var colsm = $("<div/>", {
class: "col-sm-10"
});
var input = $("<input/>", {
type: "text",
class: "form-control",
id: obj.productName + "Id",
value: obj.productPrice
});
colsm.append(input);
formgroup.append(colsm);
$(".box-body").append(formgroup);
});
},
error: function(e) {
console.log(e.responseText);
}
});
}
谢谢!
您还没有在输入栏输入 name
。
var input = $("<input/>", {
type: "text",
name: "productPrice",
class: "form-control",
id: obj.productName + "Id",
value: obj.productPrice
});
试试上面的代码。