1. 首页
  2. 数据库
  3. 其它
  4. XMLHttpRequest of ajax

XMLHttpRequest of ajax

上传者: 2020-12-22 23:44:55上传 PDF文件 45.88KB 热度 15次
调用 function(Url) { var XML = new XMLHttpRequest(); XML.onreadystatechange = function() { if (XML.readyState == 4) { if (XML.status == 200) { //XML.responseText } else { //XML.statusText } } else { //数据加载中... } }; XML.open(“GET”,Url
用户评论