ajax 发送post请求

example:
$.ajax({
        url:'/sections/recover/'+id,
        method:'POST',
        success:function(data){   //可选 请求成功时执行的回调函数 ,注意参数没有$
            var s = eval('('+data+')');  //将json字符串转为对象,注意两个单引号中的括号
            if(s.msg=='succeed')
            {                  
    		$('.modal-body').html(id+' 已修复');
		$('#myModal').modal('show');
		items.disabled = false;
            }else {
		$('.modal-body').html(id+s.msg);
                $('#myModal').modal('show');
                items.disabled = false;
	    }
       }
});

你可能感兴趣的:(前端)