zoukankan      html  css  js  c++  java
  • ajax一

    最简单版的ajax

    get版本

            var xhr = null //创建对象
            if(window.XMLHttpRequest){
                xhr = new XMLHttpRequest() //重新赋值
            }else{
                xhr = new ActiveXObject('Microsoft.XMLHTTP') //重新赋值(鉴别ie6)
            }
            xhr.open('get','url?xxx'+xxx,true) //准备发送
            xhr.send(null) //执行发送
            xhr.onreadystatechange = function (){ //回调函数
                if(xhr.readyState == 4){
                    if(xhr.status == 200){
                        //xhr.responseXML
                        var result = xhr.responseText
                        console.log(result)
                    }
                }
            }

    post版本

            var xhr = null //创建对象
            if(window.XMLHttpRequest){
                xhr = new XMLHttpRequest() //重新赋值
            }else{
                xhr = new ActiveXObject('Microsoft.XMLHTTP') //重新赋值(鉴别ie6)
            }
            xhr.open('post','url',true) //准备发送
            xhr.setRequestHeader('Content-type','application/x-www-form-urlencoded')
            var param = 'xxx'+xxx
            xhr.send(param) //执行发送
            xhr.onreadystatechange = function (){ //回调函数
                if(xhr.readyState == 4){
                    if(xhr.status == 200){
                        //xhr.responseXML
                        var result = xhr.responseText
                        console.log(result)
                    }
                }
            }

    去加油吧少年!

  • 相关阅读:
    Chrome开发者工具详解(1)
    Chrome开发者工具详解(2)
    Ubuntu ADSL拨号上网
    Bash中单引号和双引号的区别
    建立菜单
    波浪号和Hyphen扩展
    标准IO和重定向
    Bash变量扩展修改符
    mysql主键约束和唯一性约束
    Here文档
  • 原文地址:https://www.cnblogs.com/xufeng1994/p/10424692.html
Copyright © 2011-2022 走看看