我有html如下
<svg>
<g>
<rect></rect>
<text> abc </text>
</g>
<g>
<rect></rect>
<text> def </text>
</g>
</svg>
我想选择具有子文本标签的g标签作为其值“abc”,并且应该向其附加一些其他文本标签,以便最终输出为
<svg>
<g>
<rect></rect>
<text> abc </text>
<text> extra added abc </text>
</g>
<g>
<rect></rect>
<text> def </text>
</g>
</svg>
答案 0 :(得分:2)
定位g
has()
text
标记的contains()
标记,abc
字符串g
,然后将该元素附加到该$('g:has(text:contains("abc"))').append($('<text />', {text : ' extra added abc '}));
像这样的标签。
{{1}}
答案 1 :(得分:1)
试试这个:
$(function(){
$('g text:contains(abc)').closest('g').append('<text> extra added abc </text>');
});
答案 2 :(得分:1)
$(function(){
$('g text:contains(abc)').after('<text> extra added abc </text>');
});