我正在使用<use xlink:href>
引用我的svg
文件。它在我的本地计算机上工作正常,但是当我从CDN引用它时抛出错误(CORS)。似乎xlink:href
不允许CORS请求,但我想知道是否有解决方案?
另一方面,我听说SVG2不赞成使用这种sprite技术。因此,目前使用sprite SVG文件的最佳解决方案是什么,它可以在包括移动浏览器在内的所有不同浏览器上使用。
[我发现的最简单的跨浏览器解决方案是通过ajax提取SVG精灵并将其嵌入到您的页面中:
<div id="svg-container" style="display: none"></div>
<script>
!function() {
var xhr = new XMLHttpRequest();
xhr.open("GET", '/path/to/cdn/sprite.svg');
xhr.onload = function() {
document.getElementById('svg-container').innerHTML = xhr.responseText;
}
xhr.send();
}();
</script>
这也使您不必在xlink:href
中指定SVG精灵的URL。>
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#heart"></use>
</svg>