我在这里有一个ajax GET请求
Get('https://www.ratemyprofessors.com/ShowRatings.jsp?tid=282380', function(err, data){
});
function Get(url, callback) {
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.onload = function() {
var status = xhr.status;
if (status === 200) {
callback(null, xhr.response);
} else {
callback(status, xhr.response);
}
};
xhr.open('GET', url, true);
xhr.send();
};
我想获取类名“ grade”的前三个元素并获取其内部文本。如何在上面的代码的第一个Get函数中做到这一点?
答案 0 :(得分:0)
您的响应类型是1 + 1
,而不是text
。在下面可以看到工作示例。
json