0

我正在尝试根据类别选择列表中选择的内容将值添加到子类别的选择列表中。它似乎不适用于IE。任何人都可以提出这个问题吗?

我的代码在 firefox、Chrome、Opera 和 Safari 中正确工作,但在 IE7、8、9 中无效!

js代码:

<!-- Begin CHack For Ostan -->
function getOstan(str)
{
if (str.length==0)
  { 
  document.getElementById("SH_O").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("SH_O").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","listing.php?q="+str,true);
xmlhttp.send();
}
<!-- END -->
<!-- Begin CHack For City -->
function getSH_O(str)
{
if (str.length==0)
  { 
  document.getElementById("SH_C").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("SH_C").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","listing.php?z="+str,true);
xmlhttp.send();
}
<!-- END -->

在法郎:

在此处输入图像描述

如果 IE :

在此处输入图像描述

4

1 回答 1

0

function getXHRequest() {
   try { return new XMLHttpRequest(); } catch(e) {}
   try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
   alert("XMLHttpRequest not supported");
   return null;
 }

var xmlhttp = getXHRequest();
xmlhttp.open("GET","listing.php?z="+str,true);
xmlhttp.send();

但是,您应该考虑使用可以为您完成工作的库,例如 jQuery(经过测试、跨浏览器等)

$.ajax({url: "listing.php?z="+str}).done(function(data){
    $("SH_C").html(data);
});
于 2012-12-14T08:31:18.737 回答