国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

?? PHP ?? ????: XMLHttpRequest ??

1. XMLHttpRequest ?? ??

1. XMLHttpRequest? AJAX? ?????.

2 . XMLHttpRequest ??

  • XMLHttpRequest ??? ?? ?? ?????? ?????(IE5 ? IE6? ActiveXObject? ?????).

  • XMLHttpRequest? ??????? ??? ???? ???? ? ?????. ?? ?? ???? ?? ???? ??? ????? ??? ????? ? ??? ?????.

3. XMLHttpRequest ?? ??? ?? ??:

?? ?? ????(IE7+, Firefox, Chrome, Safari ? Opera)?? XMLHttpRequest ??? ???? ????. XMLHttpRequest ??.

  • XMLHttpRequest ?? ?? ??:

variable=new XMLHttpRequest();

  • ?? ??? Internet Explorer(IE5 ? IE6)? ActiveX ??? ?????.

variable=new ActiveXObject("Microsoft.XMLHTTP");

  • IE5, IE6? ??? ?? ?? ????? ?? ?? ????? XMLHttpRequest ??? ????? ?????. ???? ?? XMLHttpRequest ??? ????. ???? ?? ?? ActiveXObject? ?????:

var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
???? ??
||
var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); }