检索 xmlDOM 中 childNode 的属性

发布于 2024-11-26 14:38:42 字数 691 浏览 2 评论 0原文

我正在尝试解析 xml 文档以获取程序的一些数据。我两天前才开始学习 html/js/xml,所以请耐心等待。

这是我试图解析的 xml 片段:

<route tag="01" title="01 - Woodlawn">
    <direction tag="01_outbound" title="To Victoria & Woodlawn">
        <stop tag="stgeorge_d"/>

这是我使用 xmlDOM 加载后用于到达“停止”节点的 javascript:

var directions = xmlDoc.getElementsByTagName("direction");

var stops = directions[directionIndex].childNodes;

for (var i=0; i<stops.length; i++) {
    if(stops[i].nodeType==3) {
        document.write(stops[i].getAttribute("tag"));
    }

问题是 childNodes 没有 getAttribute 方法,与元素不同。我一直在到处寻找是否有等效的方法,但到目前为止我的搜索和试验都是空白。

任何帮助将不胜感激

I'm trying to parse a xml document to get some data for my program. I've only started learning html/js/xml two days ago so bear with me.

Here is the xml snippet i'm trying to parse:

<route tag="01" title="01 - Woodlawn">
    <direction tag="01_outbound" title="To Victoria & Woodlawn">
        <stop tag="stgeorge_d"/>

Here is the javascript I'm using to get down to the 'stop' node after I've loaded it using xmlDOM:

var directions = xmlDoc.getElementsByTagName("direction");

var stops = directions[directionIndex].childNodes;

for (var i=0; i<stops.length; i++) {
    if(stops[i].nodeType==3) {
        document.write(stops[i].getAttribute("tag"));
    }

The problem is childNodes have no getAttribute method, unlike an element. I've been looking everywhere to see if there is an equilvalent method but so far my searches and trial is coming up blank.

Any help would be greatly appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫瑟鸿黎 2024-12-03 14:38:42

更新:好消息。我的朋友帮助我并使其正常工作。基本上发生的事情是元素“stop”有 2 个节点:类型 3 节点和类型 1 节点。而不是在我的 for 循环中加 1(for (var i=0; i

我尝试使用 if(stop[i].nodeType==1) 隔离它,但这不起作用。

UPDATE: Good news. My friend helped me out and got it working. Basically what was happening was that the element 'stop' has 2 nodes: a type 3 node and a type 1 node. Instead of incrementing by 1 in my for loop (for (var i=0; i

I have tried to isolate it using if(stop[i].nodeType==1) but that didn't work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文