1. 程式人生 > >Ajax接收後臺發送過來的布爾值以及指定的字符串

Ajax接收後臺發送過來的布爾值以及指定的字符串

前端 接收 ext enc 布爾值 response xhr text encodeuri

後臺:

aContext.getResponse().getWriter().println("" + result);

前端:

$.ajax({
            url:encodeURI(encodeURI(url)),
            async :true,
            type:‘post‘,
            success:function(result)
            {
                if(result.indexOf("true")!=-1){//重點在這!!!
                  alert(
‘設置成功!‘); }else{ alert(‘設置失敗!‘); } }, error:function(xhr) { alert("請求失敗"); } });

Ajax接收後臺發送過來的布爾值以及指定的字符串