我在使用Raphaël庫時遇到問題。即時得到以下錯誤無法使用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這個
不,它仍然給出相同的錯誤 – Rajneesh
你是否在體內聲明瞭你的腳本? –
對不起,我沒有把它放在身體裏。現在它好吧謝謝 – Rajneesh