2

我需要在我的程序中创建几个 Raphael 对象。field1 和 field2 是 div 元素。每个 Raphael 对象(paper1、paper2、...)都将具有独特的画布,并且它们都需要具有完全相同的功能。Raphael 对象需要在以后动态创建。在下面的示例代码中,我需要知道哪些对象会触发 mousedown 事件。我还想知道在哪个 div 元素(此处为 field1/field2)中触发了 mousedown 事件。如何获取信息?

var myProgram = (function() {
var paper1 = Raphael("field1", 200, 400, fieldActions);
var paper2 = Raphael("field2", 200, 400, fieldActions);

var planeAttrs = {
    fill: "#fff"  
};

function fieldActions(){
    var that = this;

    that.field = that.rect(0, 0, 200, 400, 30);

    that.field.attr(planeAttrs);

    that.field.mousedown( function(e) {
    });
});
}());
4

2 回答 2

2
that.field.mousedown( function(e) {
 console.log(this, this.node, this.paper.canvas, this.paper.canvas.parentNode)
});

this- rect raphael 对象

this.node- rect svg dom 元素

this.paper.canvas- svg dom 元素

this.paper.canvas.parentNode- 具有 id (field2/field1) 的 div,其中包含被点击的 svg。

于 2012-04-11T07:12:17.600 回答
0

干得好:

that.field.mousedown( function(e) {
  var target = e.target;
  var svgElem = target.parentNode;
  var div = svgElem.parentNode;
  alert(div.id);
});

http://jsfiddle.net/mihaifm/UyPn6/3/

于 2012-04-10T21:37:27.050 回答