我使用此代码获取每个教师课程列表此代码在所有浏览器中都可以正常工作,但在 ie10 中无法获取课程列表并返回空白选择列表。
function get_lesson(lesson)
{
var getid=lesson;
document.getElementById("ajax_msg").innerHTML='<span style="color:red">Update</span>';
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");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("ajax").innerHTML=xmlhttp.responseText;
document.getElementById("ajax_msg").innerHTML='Now Select';
}
}
xmlhttp.open("GET","subpage/ajax_lesson.php?id=" + getid + "&tnow="+ (new Date()).getTime(),true);
xmlhttp.send();
}