如何将网页的内容作为字符串获取,以便我可以使用javascript将其打印到其他地方

时间:2016-06-22 10:15:46

标签: javascript

    var xmlhttp = null;
    if (window.XMLHttpRequest)
    {
      xmlhttp = new XMLHttpRequest();
    }
    else {
      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onreadystatechange = function() {
      if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
      {
        return xmlhttp.responceText;
      }
    }
    this.model.result = xmlhttp.onreadystatechange;
    xmlhttp.open("GET", this.model.konfig, false);
    xmlhttp.send();
}

1 个答案:

答案 0 :(得分:0)

您可以使用innerHTML获取任何节点的HTML内容。 示例(对于body节点):

document.getElementsByTagName('body')[0].innerHTML