我正在处理基于 onChange 事件中的另一个选择框填充的选择框。它适用于除 IE 以外的所有浏览器。
function getVersion(str){
if (str==""){
document.getElementById("vSelect").innerHTML="<option value=''>Please Select a product</option>";
return;
}
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("vSelect").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","includes/version.php?product="+str,true);
xmlhttp.send();
}
它改变了这一点
<label>Version: </label>
<select id='vSelect'>
<option value=''>Please Select a product</option>
</select>
在 IE 中,当 onchange 触发时,它只会清除选择的文本。有任何想法吗?我正在尝试在不加载库的情况下执行此操作。