JS获取生成的textnode的值
我在 for 循环中有这个 Javascript:
renderAElements[i] = document.createElement ("a");
renderAElements[i].setAttribute("href", "#");
renderAElements[i].setAttribute("class", "expander");
renderAElements[i].appendChild(expand);
alert (renderAElements[i].nodeValue);
其中 Expand 创建为:
var expand = document.createTextNode("+");
警报,旨在返回每个创建的元素的链接文本返回 null。这是为什么呢?
I have this Javascript in a for loop:
renderAElements[i] = document.createElement ("a");
renderAElements[i].setAttribute("href", "#");
renderAElements[i].setAttribute("class", "expander");
renderAElements[i].appendChild(expand);
alert (renderAElements[i].nodeValue);
where expand is created as:
var expand = document.createTextNode("+");
The alert, which is meant to return the link text of each created element returns null. Why is this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
因为您正在尝试获取 Element 节点的
nodeValue
而不是 Text 节点。Because you are trying to get the
nodeValue
of the Element node and not the Text node.这是因为 a 元素包含另一个元素而不是值。如果您想从节点中获取文本,您需要执行以下
操作之一
It's because the a element contains another element and not a value. If you want to get the text out of the node you'll need to do either
or
看看这个
Check this out
试试这个
alert (renderAElements[i].firstChild.nodeValue);
try this
alert (renderAElements[i].firstChild.nodeValue);