dbclick 在 Raphael.js 中不起作用

发布于 2024-11-02 08:22:35 字数 448 浏览 5 评论 0原文

我有以下 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(...);”完美配合

I have the following JS code fragment (using Raphael lib) and this double click does not work - does anybody can help me sort out why?

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/";
});

note: this works perfectly well with a "shapefill[1].click(...);"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

篱下浅笙歌 2024-11-09 08:22:35

它应该是 dblclick,而不是 dbclick

来自 源代码,Raphael.js 支持以下事件 - click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchendorientationchange touchcancelgesturestartgesturechange手势结束

It should be dblclick, not dbclick

From the source, Raphael.js supports following events - click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend orientationchange touchcancel gesturestart gesturechange gestureend

瞎闹 2024-11-09 08:22:35

您是指 dblclick 而不是 dbclick

Did you mean dblclick rather than dbclick?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文