var _this = null; $("input[type=submit]").click(function(){ _this = $(this); let data = { 'name' : _this.parent().parent().find('[name=name]').val(), 'phone' : _this.parent().parent().find('[name=tel]').val(), 'page' : _this.parent().parent().find('[name=address]').val(), // 所属页面 'subject' : _this.parent().parent().find('[name=subject]').val() // 学科 中小幼等 普通话 }; console.log(data); postTD(data); return false; }); function postTD(data){ $.ajax({ url: 'http://yd.ysedu.com/pc/v1/post_extract_phone', type: 'POST', data: data, dataType: 'json', success: function(res){ alert(res.message) console.log(res); if(res.errcode === 200) { _this.attr('disabled', true); } }, error: function(err){ console.log(err); } }); }