美文网首页
原生ajax / $ajax

原生ajax / $ajax

作者: 798b6b7c244d | 来源:发表于2020-08-14 16:29 被阅读0次
                    var parme = {
                        username: username.value,
                        mobile: phone.value,
                        sex: sex,
                        city: '杭州'
                    }
    
                    // 源生
                    var xhr = new XMLHttpRequest();
                    xhr.open('POST', '/');
                    // xhr.setRequestHeader("token",token)          //请求头携带参数(token)
                    // xhr.setRequestHeader("Accept",'application/json, text/javascript, */*')    // 修改请求头Accept属性
                    xhr.send(JSON.stringify(parme));
                    xhr.onreadystatechange = function() {
                        if (xhr.readyState === 4) {
                            console.log('success', xhr.responseText);
                        } else {
                            console.log('error', xhr.responseText);
                        }
                    }
    
                    //jq
                    $.ajax({
                        type: "POST",
                        url: "",
                        data: parme,
                        dataType: "json",
                        success: function(data){
                            $('#success').animate({
                                top: '0px'
                            }, 500)
                            setTimeout(function() {
                                $('#success').animate({
                                    top: '-40px'
                                }, 500)
                            }, 3000)
                        }
                    });
    

    相关文章

      网友评论

          本文标题:原生ajax / $ajax

          本文链接:https://www.haomeiwen.com/subject/itzgdktx.html