ajax函数不适用于ie10

时间:2013-06-19 06:39:43

标签: ajax

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

    }

1 个答案:

答案 0 :(得分:0)

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

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

HTH,