将拉斐尔文本的 CSS 样式更改为 javascript
Change a CSS style of Raphael text with javascript
我可以用 jQuery 更改 Raphael 文本的 CSS 属性,如下所示:
var text = paper.text(10,10,'abc');
$(text.node).css('font-style','italic');
只有 javascript 而没有 jQuery 我怎样才能做同样的事情?
在javascript中,使用element.style.property = 'new-style';
编辑元素的样式。
var text = paper.text(10,10,'abc');
text.node.style.fontStyle = 'italic';
我可以用 jQuery 更改 Raphael 文本的 CSS 属性,如下所示:
var text = paper.text(10,10,'abc');
$(text.node).css('font-style','italic');
只有 javascript 而没有 jQuery 我怎样才能做同样的事情?
在javascript中,使用element.style.property = 'new-style';
编辑元素的样式。
var text = paper.text(10,10,'abc');
text.node.style.fontStyle = 'italic';