如何使用javascript在svg文本元素上设置glyph-orientation-horizontal属性?
我试过了
svg.setAttribute("style","glyph-orientation-horizontal:90");
并尝试过
svg.style.glyph-orientation-horizontal=90;
第一个清除所有样式值,以便style=''
第二个引发javascript错误
svg定义为
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
我是否需要在容器svg的所有子文本元素上单独设置值?或者我可以在容器svg上设置值,文本元素将继承该值吗?
任何建议都将不胜感激。
谢谢, 克里斯托弗
答案 0 :(得分:4)
连字符变成了camelCase:
svg.style.glyphOrientationHorizontal = 90