SVG内部使用对象标记如何添加类?

时间:2018-06-27 11:09:38

标签: css html5 svg

 <object id="svgObject" data="http://demowhistle.com/svg/pe-circle.svg" type="image/svg+xml">

您的browser不支持SVG

<script type="text/javascript">
window.onload=function() {
// Get the Object by ID
var a = document.getElementById("svgObject");
// Get the SVG document inside the Object tag
var svgDoc = a.contentDocument;
// Get one of the SVG items by ID;
var svgItem = svgDoc.getElementById("page-id-267");
// Set the colour to something else
svgItem.setAttribute("fill", "lime");
};  
</script>

我需要更改页面有效颜色。

0 个答案:

没有答案