$(document).on('click', '.user-save-btn', function () {
$.ajax({
url: 'index',
type: 'post',
dataType: 'json',
data: $('#user-form').serialize(),//重点在这
success: function (data) {
$('#user-render-html').html(data.data.html);
}
});
return false;
});

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
  • 2021-09-08
  • 2021-12-27
  • 2022-12-23
  • 2021-05-20
猜你喜欢
  • 2021-11-27
  • 2021-11-18
  • 2021-04-12
  • 2021-04-25
  • 2022-12-23
  • 2022-01-22
  • 2021-10-18
相关资源
相似解决方案