多做题,通过考试没问题!

ajax开发考试

睦霖题库>其他计算机考试>ajax开发考试

简述使用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);。
答案解析:
进入题库查看解析

微信扫一扫手机做题