$(this).getAttribute在使用$ .each XML Javascript时不是函数

时间:2014-11-25 17:11:21

标签: javascript jquery xml loops dom

我正在遍历XML文档并尝试获取每个文档的name属性,但Chrome一直告诉我$(this).getAttribute("name");不是函数。任何人都知道发生了什么?

我在这里看了一篇类似的帖子,但它是在按钮中的$(this)属性中传递onclick,而不是用于迭代。希望我能在这件事上得到启发。

XML:

<?xml version="1.0" encoding="UTF-8"?>
<user>
<hotel_group name="Pueblo Bonita" id="1">
    <hotel>
        <name>Pueblo Bonita 1</name>
        <location>
            <address>123 Deer St.</address>
            <city>Montego Bay</city>
            <state>St. Ann's Parish</state>
            <country>Jamaica</country>
        </location>
        <hotel_code>556</hotel_code>
    </hotel>
    <hotel>
        <name>Pueblo Bonita 2</name>
        <location>
            <address>123 Caribou Dr.</address>
            <city>Negril</city>
            <state>Spanish Town</state>
            <country>Jamaica</country>
        </location>
        <hotel_code>555</hotel_code>
    </hotel>
    <hotel>
        <name>Pueblo Bonita 3</name>
        <location>
            <address>30 Milsborough Dr</address>
            <city>Kingston</city>
            <state>Kingston</state>
            <country>Jamaica</country>
        </location>
        <hotel_code>552</hotel_code>
    </hotel>
</hotel_group>
</user>

JS:

            $(xml).find("hotel_group").each(function (k, v) {
                if (!hotelGroups) {
                    hotelGroups = [];
                }

                hotelGroups[k] = $(this).getAttribute("name");

            });

1 个答案:

答案 0 :(得分:4)

我认为你的意思是:

hotelGroups[k] = $(this).attr("name");

我不相信getAttribute是一种有效的jQuery方法。