当我有一张带有 JavaScript chrome 的 SVG 图片时,显示“资源解释为文档,但使用 MIME 类型 image/svg+xml 传输”。我可以将它包含在 iframe 中或嵌入 TAG 相同的结果。但是,当我将 mime 类型更改为其他类型时,浏览器无法呈现它。所以我猜“image/svg+xml”是正确的?
SVG
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" baseProfile="full" id="draw"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 480 480">
<defs>
<style type="text/css">
<![CDATA[
]]>
</style>
</defs>
<rect x="0" y="0" width="480" height="480" rx="0" ry="0" fill="rgb(255, 255, 255)" />
</g>
<script type="text/ecmascript"><![CDATA[
(function () {
//Some code here
}());
]]>
</script>
</svg>