作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是第一次尝试学习 SVG,但代码似乎与我的块注释有问题。我正在使用:
/* This is my
* block comment
*/
'return' statement outside of function
line: 116, column: 4
最佳答案
由于 SVG 是 XML,您可以使用 XML 样式注释:
<!--
comment
-->
<g onclick = "setScale(1)">
<rect id = "scale1" x = "120" y = "10" width = "30" height = "30"
fill = "#ffc" stroke = "black"/>
<!--
this text describes middle rectangle
-->
<text x = "135" y = "30" text-anchor = "middle">M</text>
</g>
<!--
this group is disabled for testing
<g onclick = "setScale(1)">
<rect id = "scale1" x = "120" y = "10" width = "30" height = "30"
fill = "#ffc" stroke = "black"/>
<text x = "135" y = "30" text-anchor = "middle">M</text>
</g>
-->
关于svg - 如何在 SVG 中进行 block 注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5307542/
我是一名优秀的程序员,十分优秀!