我有一個d3選擇,我已經定義了事件回調。如何從外部觸發d3事件
var obj = d3.select("#kk").on("mouseleave",function(){
console.log("mouse leave");
});
如何從外部觸發事件?有什麼樣:
obj.mouseleave(); // actuall mouse leave function calling
如果有,如果我選擇的對象,而指的是obj
,將觸發還能用嗎?
如:
var newObje=d3.select("#kk");
newObje.mouseleave(); //will this trigger the previously defined instructions
這很酷,很棒的除了d3 v4,不知道這個! –