在职的
<g>
<foreignObject width="100%" height="100%">
<body>
<div style="width:4em;height:4em">
<object height="100%" width="100%"
data="icons/cloud.svg" type="image/svg+xml">
</object>
</div>
</body>
</foreignObject>
<text x="0" y="15" fill="red">I love SVG</text>
</g>
</svg>
不工作
我正在尝试使用 d3js 动态添加相同的内容。但它只是简单地添加 DOM 元素结构,而不是加载 SVG 图像。
d3.select("body").append("svg")
.append("foreignOject").attr("height","100%").attr("width","100%")
.append("body")
.append("div").style("width","4em").style("height","4em")
.append("object").attr("height","100%").attr("width","100%")
.attr("data","icons/cloud.svg").attr("type","image/svg+xml");
在 xhtml: 前缀之后也一样。我不知道为什么那个“对象”标签没有加载 SVG 图像。请检查以下 SC: