• Jquery的同步和异步请求


       1 异步请求:
        1.1 $.ajax
           $.ajax({
                    url : 'your url',
                    data:{name:value},
                    cache : false,
                    async : true,
                    type : "POST",
                    dataType : 'json/xml/html',
                    success : function (result){
                        do something....
                    }
                });
        2 同步请求
        2.1 $.ajax
           $.ajax({
                    url : 'your url',
                    data:{name:value},
                    cache : false,
                    async : false,
                    type : "POST",
                    dataType : 'json/xml/html',
                    success : function (result){
                        do something....
                    }
                });
        2.2 $.post
          $.post(
                    'your url',
                    {name:value},
                    function(data) {
                        do something...
                    },
                'json/xml/html'
                );

  • 相关阅读:
    tcpdump 筛选抓包
    TCP拥塞避免
    【转载】TCP协议
    go 参数传递的是值还是引用 (转)
    go 数组指针 指针数组
    go 协程
    go 接口实现
    go函数可见性
    go 继承
    go 结构体函数
  • 原文地址:https://www.cnblogs.com/xuyatao/p/7417135.html
Copyright © 2020-2023  润新知