使用Vanilla javascript设置AJAX dataType?

时间:2011-09-02 15:01:24

标签: javascript jquery ajax

我正在使用这样的AJAX:

xmlhttp=new XMLHttpRequest();
    xmlhttp.open("GET","http://example.com",false);
    xmlhttp.send();
    data = xmlhttp.responseXML;

xmlhttp.responseXML以XML格式返回,因此它是一个javascript对象。但是,我希望它以原始字符串格式。类似于在jQuery的dataType: "text"

中设置$.ajax()的东西

1 个答案:

答案 0 :(得分:3)

使用responseText代替responseXML

xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","http://example.com",false);
xmlhttp.send();
data = xmlhttp.responseText;