0

我使用此代码获取每个教师课程列表此代码在所有浏览器中都可以正常工作,但在 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();

    }
4

1 回答 1

0

IE 10 似乎与 ajax 有问题。请参考:

http://code.gishan.net/code/solution-to-ie10-ajax-problem/

高温下,

于 2013-06-19T06:48:14.727 回答