<script>
SVG 的script
元素允许向 SVG 文档添加脚本。
示例
html
Click the circle to change colors.
<svg
viewBox="0 0 10 10"
height="120px"
width="120px"
xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4" />
<script>
// <![CDATA[
function getColor() {
const R = Math.round(Math.random() * 255)
.toString(16)
.padStart(2, "0");
const G = Math.round(Math.random() * 255)
.toString(16)
.padStart(2, "0");
const B = Math.round(Math.random() * 255)
.toString(16)
.padStart(2, "0");
return `#${R}${G}${B}`;
}
document.querySelector("circle").addEventListener("click", (e) => {
e.target.style.fill = getColor();
});
// ]]>
</script>
</svg>
属性
使用上下文
类别 | 无 |
---|---|
允许的内容 | 任何元素或字符数据 |
规范
规范 |
---|
可缩放矢量图形 (SVG) 2 # ScriptElement |
浏览器兼容性
BCD 表格仅在浏览器中加载