在下面的代码示例中,成功回调函数记录’input#04.update’四次而不是每个单独的输入,这很有意义,看看闭包是如何工作的,但是我将如何使用这一点来定位每个单独的输入.
<input type="text" name="" id="01" class="update"> <input type="text" name="" id="02" class="update"> <input type="text" name="" id="03" class="update"> <input type="text" name="" id="04" class="update"> function updateFields(){ $('input.update').each(function(){ $this = $(this); $.ajax({ data: 'id=' + this.id,success: function(resp){ console.log($this); $this.val(resp) } }); }); }