试题详情
简答题简述使用GET请求并获取服务器端返回的文本信息的过程。
  • (1)创建请求字符串。var url=”servlet/doLogin?uname=zhangsan&pwd=123”;
    (2)创建XMLHttpRequest对象。
    xmlHttpRequest =new XMLHttpRequest();//IE7及以上版本或其他浏览器。
    xmlHttpRequest=new ActiveXObject(“Microsoft.XMLHTTP”);//老版本IE(IE5和IE6)。
    (3)设置回调函数。
    xmlHttpRequest.onreadystatechange=回调函数名;
    在回调函数中使用xmlHttpRequest的responseText获得返回的文本信息。
    (4)初始化XMLHttpRequest。xmlHttpRequest.open(“GET”,url,true);
    (5)发送请求。xmlHttpRequest.send(null);。
  • 关注下方微信公众号,在线模考后查看

热门试题