ajax标准格式

[html]  view plain  copy
  1. _ain_register={
  2. _ain_method:function(){
  3.   var dataForm = $("#fromData").serialize();
  4.   $.ajax({
  5.      type:"post",
  6.      cache:false,
  7.      dataType:"json",
  8.      data:dataForm,
  9.      url:ctx+'/a/b/c',
  10.      success:function(ret){
  11. //对结果集进行操作
  12.      },
  13.      error:function(){
  14. window.toastr['error']("未获取数据","提示");
  15.      }
  16.   })
  17. }
  18. }
  19. //注释:
  20. ctx=${pageContext.request.contextPath}
  21. 这个在前台写:
  22. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  23. ${pageContext.request.contextPath}"/>

你可能感兴趣的:(Ajax)