我有以下JS代码片段(使用Raphael lib),这次双击不起作用 - 有人可以帮我理清原因吗?
var paper = new Raphael(document.getElementById('canvas_container'), 600, 500);
var shape=[];
var shapefill=[];
shape[1] = paper.path('m150,150 l40,0 l0,20 l-40,0 l0,-20z');
shapefill[1]=toothsurface[1].attr({fill:'#FF33FF'})
shapefill[1].dbclick(function ()
{
window.location="http://127.0.0.1:8000/dbclick/";
});
注意:这与“shapefill [1] .click(...);”
完美配合