jQuery不适用于XML标记

时间:2011-11-11 08:07:05

标签: jquery xml

我正在使用jQuery做一些XML工作。然后jQuery告诉我它找不到<col>标签给我空数据。在与jQuery讨论之后,似乎只是不喜欢使用<col> XML标签,也许有些专家可以向我解释一下这个问题?

这是我的XML:

<field>
<property>
    <label>Matrix Question</label>
    <rows>
        <row>row - 1a</row>
        <row>row - 2a</row>
        <row>row - 3a</row>
        <row>row - 4a</row>
    </rows>
    <cols>
        <col>col - 1</col>
        <col>col - 2</col>
        <col>col - 3</col>
        <col>col - 4</col>
        <col>col - 5</col>
    </cols>
    <isrequired>true</isrequired>
</property>

这是我的代码:

var xmlWithCol = "<field> <property> <label>Matrix Question</label> <rows> <row>row - 1a</row> <row>row - 2a</row> <row>row - 3a</row> <row>row - 4a</row> </rows> <cols> <col>col - 1</col> <col>col - 2</col> <col>col - 3</col> <col>col - 4</col> <col>col - 5</col> </cols> <isrequired>true</isrequired> </property> </field>";
var xmlWithoutCol = "<field> <property> <label>Matrix Question</label> <rows> <row>row - 1a</row> <row>row - 2a</row> <row>row - 3a</row> <row>row - 4a</row> </rows> <cols> <colm>col - 1</colm> <colm>col - 2</colm> <colm>col - 3</colm> <colm>col - 4</colm> <colm>col - 5</colm> </cols> <isrequired>true</isrequired> </property> </field>"

$(xmlWithCol).find("cols").each(function ()
{
    alert($(this).html());
});

$(xmlWithoutCol).find("cols").each(function ()
{
    alert($(this).html());
});

你可以看到我的第一个输出是

col - 1 col - 2 col - 3 col - 4 col - 5 

然后我发现jQuery不喜欢<col>标签,而是将其更改为< colm >< /colm >,它给了我这个:

<colm>col - 1</colm> <colm>col - 2</colm> <colm>col - 3</colm> <colm>col - 4</colm> <colm>col - 5</colm> 

这就是我想要的。

如何让我的jQuery喜欢<col>标签?

1 个答案:

答案 0 :(得分:3)

我不是自称是专家,而是<col> exists in HTML as an empty element。即使您尝试将其用作XML元素,也不能给该元素文本,因为jQuery会破坏HTML DOM规则。

由于jQuery是用HTML而不是XML编写的,除了不使用名称<col>之外我想不出好的解决方法......