zoukankan      html  css  js  c++  java
  • JS原生ajax小记

    1.Abort()停止当前请求

    2.getAllResponseHeaders()作为字符串返回完整的headers

    3.getResponseheader(“hederLabel”)作为字符串返回单个的header标签

    4.Open(“method”,“URL”[,asyncFlag[,”userName”[,”password”]]])设置未决的请求的目标URL方法和其他参数

    5.Send(content)发送请求

    6.setRequestHeader(“label”,”value”)设置header并和请求一起发送

    7.onreadystatechange状态改变的事件触发器

    8.readyState 对象状态(integer): 0=未初始化,1=读取中,2=已读取,3=交互中,4=完成

    9.responseText服务器进程返回数据的文本

    10.responseXML服务器进程返回数据的兼容DOM的XML文档对象

    11.status服务器返回的状态码,如404=“文件未找到”、200=“成功”

    12.statusText服务器返回的状态文本信息

  • 相关阅读:
    python
    突然萌发关于 redis 的想法(1)
    Liunx
    Git
    说一下数据库查询 和 分页问题的解决
    易忘点
    python
    python
    python
    python
  • 原文地址:https://www.cnblogs.com/yanjialin/p/3715011.html
Copyright © 2011-2022 走看看