.getComputedTextLength()在IE和Chrome中返回不同的值

时间:2015-02-04 02:57:31

标签: javascript google-chrome internet-explorer svg

当我写了一些小程序时,我遇到了一个问题。有一个SVG textNode:

textMeasureNode.style.cssText 
"font-family: "Open Sans", Arial, Helvetica, sans-serif; font-size: 22px; font-style: oblique; font-weight: normal; fill: #333333;" 
and 
textMeasureNode.textContent 
"Q1"

当我调用该函数时:

textMeasureNode.getComputedTextLength() 

我在IE和Chrome中获得了不同的值。

IE

  

49.269996643066406

铬:

  

29.34765625

似乎font-style: oblique会影响这些结果。有人遇到过这个问题吗?

0 个答案:

没有答案