> 백엔드 개발 > PHP 튜토리얼 > Ajax 소형 패키지 가져오기, 게시 요청

Ajax 소형 패키지 가져오기, 게시 요청

WBOY
풀어 주다: 2016-07-25 09:08:20
원래의
880명이 탐색했습니다.
Ajax的小封装对ajax的get请求的小封装
  1. function Ajax() {
  2. var xhr =null;
  3. if(window.XMLHttpRequest) {
  4. xhr = new XMLHttpRequest();
  5. } else {
  6. xhr = new ActiveXObject("Microsoft.XMLHttp");
  7. }
  8. this.get=function(url,success,fail){ //get请求
  9. xhr.open("GET", "1.jsp",true);
  10. xhr.onreadystatechange=function(){
  11. if(xhr.readyState==4) {
  12. alert(xhr.status);
  13. if(xhr.status==200) {
  14. var txt = xhr.responseText;
  15. txt = eval("(" txt ")");
  16. var ch = txt.charAt(0);
  17. if(ch=="<") { //xml类型
  18. var xml = xhr.responseXML;
  19. success(eval("(" xml ")"));
  20. } else if(ch=="["||ch=="{") {//json类型
  21. txt = eval("(" txt ")");
  22. success(txt);
  23. } else {//不知道直接返回
  24. success(txt);
  25. }
  26. } else {
  27. if(fail) {
  28. fail(xhr.status);
  29. }
  30. }
  31. }
  32. };
  33. xhr.send(null);
  34. };
  35. this.post = function (url,param,success,fail) {//post请求
  36. xhr.open("POST", "1.jsp",true);
  37. xhr.onreadystatechange=function(){
  38. if(xhr.readyState==4) {
  39. alert(xhr.status);
  40. if(xhr.status==200) {
  41. var txt = xhr.responseText;
  42. var ch = txt.charAt(0);
  43. if(ch=="<") { //xml类型
  44. var xml = xhr.responseXML;
  45. success(eval("(" xml ")"));
  46. } else if(ch=="["||ch=="{") {//json类型
  47. txt = eval("(" txt ")");
  48. success(txt);
  49. } else {//不知道直接返回
  50. success(txt);
  51. }
  52. } else {
  53. if(fail) {
  54. fail(xhr.status);
  55. }
  56. }
  57. }
  58. };
  59. xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  60. xhr.send(param);
  61. };
  62. }
复制代码


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿