我在ASP.net页面加载了一个SVG文件,其中嵌入了标记:
<embed onload="myFunction()" id="svg_file" src="TEST.svg" type="image/svg+xml" />
在myFunction中,我想为TEST.svg中的每个节点设置一个onclick方法。
我的文件SVG如下所示:
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="595.28px" height="841.89px" viewBox="0 0 595.28 841.89" enable-background="new 0 0 595.28 841.89" xml:space="preserve">
<g ID=POS1>
.....
</g>
<g ID=POS2>
.....
</g>
我怎么能在jquery中做到这一点?感谢