我有一个表,其中一些数据显示给用户。有一些按钮用于对数据进行CRUD,我在前端使用jQuery。当按钮被按下时,将显示一个模态,并通过ajax请求更新数据。
我的问题是:如果我点击一个更新按钮,关闭模态,点击另一个更新按钮,更新数据,它保存相同的新数据在每点击行。简而言之,我的代码被执行了很多次,和我执行的点击次数一样多。
下面是我的代码:http://pastebin.com/QWQHM6aW
$(document).ready(function() {
/*--------------------------------------------*/
// GENERAL
/*--------------------------------------------*/
function loadingStart() {
$("#overlay").show();
$("#loading").show();
}
function loadingDone() {
$("#overlay").hide();
$("#loading").hide();
}
$(document).ajaxStop(function() {
loadingDone();
//alert('Ajax Terminou');
});
function reloadRows() {
$.post("ajax.php", { type: "AllRows" }) // Faz um post do tipo AllRows.
.done(function(data) {
alert(data);
//$("#tbody").html(data);
});
}
$("body").on("click", ".update-socio-btn", updateSocio);
/*--------------------------------------------*/
// UPDATE
/*--------------------------------------------*/
function updateSocio(event) {
$("#socio-form input").val(''); // Apagar os valores do form.
loadingStart(); // Começar o Loading...
var id = $(this).closest('tr').find('.id-holder').html(); // Pegar o valor do id holder e salvar na var id.
$("#socio-form input").removeClass("input-transparent").prop("disabled", false); // Queremos ver e utilizar os inputs.
$(".modal-footer").removeClass("hidden"); // Queremos ver o footer do modal.
$(".btn-modal").attr("id", "update-btn-confirm"); // Atribui o id: update-btn-confirm ao .btn-modal.
$.post("ajax.php", { type: "read", id: id }) // Faz um post do tipo Read e retorna os valores nos inputs correspondentes
.done(function(data) {
console.log('read');
jsonOBJ = jQuery.parseJSON(data);
for (var key in jsonOBJ) {
$("input[name=" + key + "]").val(jsonOBJ[key]);
}
});
$("#update-btn-confirm").click(function() { // Quando clicar no botão de salvar.
var formArray = $("#socio-form").serializeArray(); // Pega todas as informações dos inputs e transforma em um array json.
$.post("ajax.php", { type: "update", id: id, inputs: formArray }) // Faz um post do tipo Update.
.done(function(data) {
console.log('uptade');
alert(data);
event.stopPropagation();
});
});
event.preventDefault();
}
});
我强烈怀疑问题在于.on
方法,但我很难确定它。我知道我可以使用.live()
或.bind()
,但我试图避免它,因为两者都已被弃用。
有什么建议吗?
每次点击.update-socio-btn
类元素,运行updateSocio
函数。每次运行updateSocio
时,在#update-btn-confirm
上绑定一个新的点击事件。
您可以通过将click绑定移到updateSocio
函数之外并且只绑定一次事件处理程序来修复此问题。