So you could take childNodes[1], but it's a bit fragile... in particular it would break for an XML parser that turns CDATA sections into text, where you'd get a single Text child containing foo and all the whitespace. Probably better to take the textContent of the <data> element (except of course with fallback to innerText for IE).
Вот такой ответ нашёл на иностранном форуме
действительно если написать childNodes[1] то могу получить HelloWorld
но без тега <test> а вот дальше не очень понимаю =(
document.getElementById("results").innerHTML = x.textContent;
добавлял через textContent но не читает =(
|