1

我在使用 Raphaël 库时遇到问题。我收到以下错误

'R._g.doc.body' 为空或不是对象

我刚刚使用了以下代码

<html>
<head>
<script src="raphael.js"></script>
<script>
// Creates canvas 320 × 200 at 10, 50
var paper = Raphael(10, 50, 320, 200);

// Creates circle at x = 50, y = 40, with radius 10
var circle = paper.circle(50, 40, 10);
// Sets the fill attribute of the circle to red (#f00)
circle.attr("fill", "#f00");

// Sets the stroke attribute of the circle to white
circle.attr("stroke", "#fff");

</script>
</head>
</html>

我为此使用了 IE8

4

2 回答 2

1

不确定,但是鉴于您的代码和错误消息的内容,我会说您需要<body></body>在文档中添加一个标签。

不确定这是否是 IE8 的东西。我把你的例子放在一个小提琴中,对我来说,在 Chrome 22 中,它也可以在没有 body 标签的情况下工作。

于 2012-10-30T11:16:31.440 回答
1

您没有使用<body></body>n 并将您的脚本放在body而不是head

尝试这个

<html>
<head>
<script src="raphael.js"></script>
</head>
<body>
  <script>
// Creates canvas 320 × 200 at 10, 50
var paper = Raphael(10, 50, 320, 200);

// Creates circle at x = 50, y = 40, with radius 10
var circle = paper.circle(50, 40, 10);
// Sets the fill attribute of the circle to red (#f00)
circle.attr("fill", "#f00");

// Sets the stroke attribute of the circle to white
circle.attr("stroke", "#fff");

</script>
</body>
</html>
于 2012-10-30T11:17:29.980 回答