• jQuery结合Ajax 的使用


     /****经典版的结合*****/
      //发送ajax请求
     $.ajax({
         //发送请求方式是否是异步
         async:true,
         //发送请求的方式
         type:"get",
         //发送请求地址
         url:"JqAjaxServlet",
         //可能携带的参数
         //data:"uname=sxt&pwd=123",
         data:{uname:'sxt',pwd:'123'},
          // 预期服务器返回的数据类型
         dataType:"json",
         //回调函数
         success:function (result) {
           // result-->响应回来的内容
             alert(result.sname);
         },
         error:function () {
             alert("ajax响应失败");
         }
     })
     /**精简版***/
    // $.get(url, [data], [callback], [type])
     $.get("ajaxServlet","uname=sxt",function (result) {
     },"json");
     $.post("ajaxServlet","uname=sxt",function (result) {
     },"json");

  • 相关阅读:
    postfix遇到的问题
    SElinux以及防火墙的关闭
    centos查看系统信息
    WINDOWS访问SAMBA提示没有权限
    常用命令
    口才
    【李敖的管理经】
    随笔
    查询MX记录
    bash: ifconfig: command not found
  • 原文地址:https://www.cnblogs.com/vincentmax/p/14285252.html
Copyright © 2020-2023  润新知