ajax基础知识
Posted 明天OoO你好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax基础知识相关的知识,希望对你有一定的参考价值。
function deleteData() {
var id_list = [];
$(‘#table_body‘).find(‘:checkbox‘).each(function () {
if ($(this).prop(‘checked‘)) {
id_list.push($(this).val());
}
});
$.ajax({
url: requestUrl,
type: ‘DELETE‘,或post、get等
data: {id_list: id_list},提交form表单时,用data:$(
‘#your_form_id‘
).serialize(),
traditional: true,
success: function (response) {
if (response.status) {
SuccessHandleStatus(response.message);
} else {
alert(response.message);
}
$.Hide(‘#shade,#modal_delete‘);
refreshData();
},
error: function () {
$.Hide(‘#shade,#modal_delete‘);
alert(‘请求异常‘);
}
})
}
以上是关于ajax基础知识的主要内容,如果未能解决你的问题,请参考以下文章