简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了

WBOY
Release: 2016-06-13 10:54:23
Original
874 people have browsed it

简单购物车代码(用到了一点点ajax)为什么图片在ff下面显示正常,在ie里面却显示不了

ie下面显示不了

是ajax代码的问题吗?

JScript code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->var xmlhttp;  function createXHR()  {      try      {          xmlhttp=new ActiveXObject("Msxm12.XMLHTTP");  //支持不同浏览器版本,下同      }      catch(e)      {          try          {              xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");          }          catch(e)          {              try              {                  xmlhttp=new XMLHttpRequest();                  if(xmlhttp.overrideMimeType)                  {                       xmlhttp.overrideMimeType("text/xml");                  }               }               catch(e){}           }       }       if(!xmlhttp)       {            return false;       }  }function doAjax( url ){    createXHR();    xmlhttp.onreadystatechange=requestAjax;    xmlhttp.open( "GET", url, true );    xmlhttp.send( null );   }function requestAjax(){    if(xmlhttp.readyState==4)    {        if(xmlhttp.status==200)        {            document.getElementById('showcards').innerHTML = xmlhttp.responseText;        }    }}
Copy after login

下面是php文件中的代码
PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->
Copy after login
点击武将名,登录您的武将卡,
再次点击武将名,拿下武将卡(点击图片也行)。
'; ?> 简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了
 ';break; case "1.5" :echo '简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了';break; case "2" :echo '简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了';break; case "2.5" :echo '简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了';break; case "3" :echo '简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了简单购物车代码(用到了一点点ajax)为什么图片在ff上面显示正常,在ie里面却显示不了';break; default :break; } ?>
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template