下午,
我正在为从数据库返回的项目的代码中的多个文本框设置 ID。例如...
<input type="text" id="abcd1234" value="0.00">
基本上,在返回项目时设置了 id,我需要使用 jQuery 获取 id,这样我就可以用新价格更新文本框中的值。
我需要返回 1)id 和 2)值,以便我可以处理它。有人能建议我怎么做吗?
更新:这是我要使用的更新功能...请忽略传递过来的数据,因为一旦我能够从上面提到的文本框中获取价格,我就会更新它。- 删除数据。:)
$('.update').live('click', function () {
$('#saving').show();
$.ajax({ type: "POST",
url: "../Web.asmx/UpdateData",
data: **JSON will go here**,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
$('#saving').hide();
$('#infoMsg').show();
$('#infoMsg').addClass('er-green');
$('#infoMsg').html("Product was updated successfully.");
},
error: function (msg) {
$('#saving').hide();
$('#infoMsg').show();
$('#infoMsg').addClass('er-yellow');
$('#infoMsg').html("We are unable to update the product at this time.");
}
});
});
非常感谢...
艾伦