我找不到如何将两个SVG嵌入到SVG文档中的方法.我需要用能够用两个子SVG-s操作的代码的能力来做,并希望在这两个区域上都有独立的坐标.
我不喜欢在HTML中这样做,因为我认为与SVG相比它太有限了.
非常感谢!
解决方法:
An SVG document fragment consists of any number of SVG elements contained within an ‘svg’ element.
>资料来源:http://www.w3.org/TR/SVG/struct.html#NewDocument
基本上:
<svg …>
<svg id="a" …>…</svg>
<svg id="b" …>…</svg>
</svg>