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();
}
答案 0 :(得分:0)
您可以使用innerHTML
获取任何节点的HTML内容。
示例(对于body
节点):
document.getElementsByTagName('body')[0].innerHTML