我正在尝试更改 html 元素的标签。
HTML
<div id='content'>
<g transform="100">.....</g>
<g transform="150">This needs to stay as is</g>
</div>
如何更改第一个元素的变换值?到目前为止,我有以下...
$('#content g:first').replaceWith( "hello" );
显然,这改变了一切,我只需要改变变换值。
我正在尝试更改 html 元素的标签。
HTML
<div id='content'>
<g transform="100">.....</g>
<g transform="150">This needs to stay as is</g>
</div>
如何更改第一个元素的变换值?到目前为止,我有以下...
$('#content g:first').replaceWith( "hello" );
显然,这改变了一切,我只需要改变变换值。