是否可以修改"填充"当svg是图像?
的index.html
<svg width="500" height="400" id="svg">
<image xlink:href="file.svg" />
</svg>
file.svg
<svg>
<g>
<rect id="first" x="0" y="0" fill="black" width="36" height="50"/>
<rect id="second" x="20" y="20" fill="blue" width="36" height="56"/>
</g>
</svg>