局部刷新

    1. $.ajax({
    2. url:"",//请求的地址
    3. type:"post/get",
    4. data:{
    5. },
    6. dataType:"json",
    7. success:function(result){//交互成功的函数
    8. window.location.href="xxx";//跳转到指定页面
    9. }
    10. })

    后端返回:
    response.getOutputStream().write(jsonObejct.toString().getBytes(“utf-8”));