DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery ajaxSubmit 異步提交的簡單實現
jquery ajaxSubmit 異步提交的簡單實現
編輯:JQuery特效代碼     

前台js
. 代碼如下:
$("#nickForm").ajaxSubmit({
     type: "post",
     url: "http://localhost:8080/test/myspace.do?method=updateNick¶m=1",
     dataType: "json",
     success: function(result){

           //返回提示信息      
           alert(result.nickMsg);
     }
 });

後台封裝:
. 代碼如下:
public ActionForward toUpdateNickName(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response){

       PrintWriter pw = response.getWriter();
      JSONObject obj = new JSONObject();

      obj.put("nickMsg", "昵稱修改成功!");

      pw.print(obj);
      pw.close();

}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved