我正在尝试使用用户插入的数据提交一个表单,并从名为 (update.asp) 的页面获取 html。
- 如何获取 html 响应以及如何将其写入页面上的 div?响应将是“成功”。
如果我的页面抛出 500 或其他类型的错误,我该如何处理?
$('input#btnUpdate').click( function() { $.ajax({ url: 'update.asp', type: 'post', dataType: 'json', data: $('form#myForm').serialize(), success: function(data) { // how do i catch the response? is this the right place? }, error: function(data) { // how do I catch the error code here? } });