我在 raphael JS 中创建一个矩形元素作为由 raphael JS 生成的 SVG 圆形元素的工具提示。我无法使用 Internet Explorer 中的以下代码访问圆心的坐标(我需要放置矩形工具提示)。
var c = {};
c.x = parseInt(c_element.node.attributes[0].nodeValue);
c.y = parseInt(c_element.node.attributes[1].nodeValue);
//code for the rectangle element tooltip
r = paper.rect(c.x,c.y,50,50);
它在 Firefox 中运行良好。但在 IE 中,工具提示是在包含我的 raphael JS 论文的 div 的左上角创建的,而不是根据需要在圆圈的中心创建。
如何解决这个跨浏览器问题?请帮忙..