0

我想选择某些元素的子元素并拒绝其他元素。

请参考下面的 HTML。

    <g id="container_svg_SeriesGroup_0" transform="translate(77,465)">
    <defs>
<linearGradient id="container_svg_symbol0Gradient" x1="0%" y1="0%" x2="0%" y2="600%"><stop offset="0" stop-color="gray" stop-opacity="1"/><stop offset="0.5" stop-color="blue" stop-opacity="1"/>
</linearGradient>
</defs>
<path id="container_svg_rectsymbol0" fill="url(#container_svg_symbol0Gradient)" stroke-width="1" stroke="Gray" d="M -5 -450 L 5 -450 L 5 -440 L -5 -440 L -5 -450"/>
<defs>
<linearGradient id="container_svg_symbol1Gradient" x1="0%" y1="0%" x2="0%" y2="600%"><stop offset="0" stop-color="gray" stop-opacity="1"/><stop offset="0.5" stop-color="blue" stop-opacity="1"/></linearGradient>
</defs>
<path id="container_svg_rectsymbol1" fill="url(#container_svg_symbol1Gradient)" stroke-width="1" stroke="Gray" d="M 73.1111111111111 -71.75 L 83.1111111111111 -71.75 L 83.1111111111111 -61.75 L 73.1111111111111 -61.75 L 73.1111111111111 -71.75" transform="scale(1)"/>
...................
</g>

我想选择这个组“container_svg_SeriesGroup_0”的孩子,但不选择“defs”组。我想找到其他元素而不是“defs”

我试过如下

$("#container_svg_SeriesGroup_0").children("path")

它返回路径元素。但在我的 DOM 中,任何类型的元素都将放在这个组“container_svg_SeriesGroup_0”中

所以我只是不选择“defs”组并选择该组的其他直接子元素。

期待答案,例如在 jquery 中使用“.not”选择器。

谢谢,

湿婆

4

1 回答 1

0

尝试这个 :

  $('#container_svg_SeriesGroup_0 > :not(defs)');
于 2013-06-06T04:58:36.393 回答