如何在左侧添加一个 div 并且仅在鼠标单击黄色部分时才会显示?这是代码:http: //jsfiddle.net/r6p7E/18/
events: {
mouseOut: function () {
var serie = this.points;
$.each(serie, function (i, e) {
if (!this.selected) {
this.graphic.attr({
fill: '#242c4a'
});
} else {
this.graphic.attr({
fill: '#fefe0f',
});
}
});
},
click: function(event) {
}
}