ajax请求

来源:互联网 发布:uvz转pdf软件 编辑:程序博客网 时间:2024/06/06 02:55
$.ajax({
type : 'post',
url : "${ctx}/delete.ht?id=${delid}",
dataType: 'json',
async: true,
success : function(data){
window.location.reload();
}
});