我正在尝试根据类别选择列表中选择的内容将值输入到子类别的选择列表中。它似乎不适用于IE。谁能提出这个问题?
我的代码在firefox,Chrome,Opera和Safari中正确工作 但不适用于IE7,8,9 !!
js code:
<!-- 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 -->
在FF中:
如果IE:
答案 0 :(得分: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);
});