如何在javascript链接中获取元素?

时间:2018-08-26 02:25:28

标签: javascript html hyperlink element

我想制作一个模拟器,告诉您该网站上特定用户名的个人资料的最新评论。我想从该链接(链接为“ https://scratch.mit.edu/users/oreyelephant/”)中定位特定的类或ID,并检测最新评论的简单文本,并将其放在div或段落标签中。对于此声明,我想在控制台中声明关于我的文本。这是我所拥有的:

var link = "https://scratch.mit.edu/users/oreyelephant/"
var aboutMe = link.getAttribute("editable read");
console.log(aboutMe);

我拥有“可编辑读取”的getAttribute的原因是,这是我要获取其文本的类的名称。 The place where I'm trying to get the text/innerText of

1 个答案:

答案 0 :(得分:0)

要获取用户的相关信息,请不要直接尝试使用该方法,请使用便笺api。

var xmlhttp = new XMLHttpRequest();
    xmlhttp.open('GET', 'https://api.scratch.mit.edu/users/oreyelephant', true);
    xmlhttp.send();
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState === 4 && xmlhttp.status === 200) {
            var response = JSON.parse(xmlhttp.responseText);
            console.log(response["profile"]["bio"])
        }
    };