zoukankan      html  css  js  c++  java
  • jquery ajax

    $.ajax({

    type:"post",                                                                             //传递方法类型:post                       

    dataType:"json",                                                                      //数据类型:json

    data:{'agriculturalProductType.typeName':typeName,......},          //参数列表

    url:"*.action",                                                                          //执行strutsurl

    error:function(){......},                                                             //失败后执行的代码

    success:function(data){                                                           //成功后执行的代码

            ......

    }

    });

  • 相关阅读:
    CF375D Tree and Queries
    进制转换
    贪心问题
    next_permutation函数
    C++ STL
    一些排序总结
    KMP算法
    围圈报数
    车辆调度—模拟栈的操作
    搜索题
  • 原文地址:https://www.cnblogs.com/loveLearning/p/2543576.html
Copyright © 2011-2022 走看看