我试图将mouseenter处理程序添加到控件之一(PlanningCalendarAppointment)。 那就是我已经尝试过的。
control.attachEvent("mouseenter", function () {
console.log("test"); // Fixed compilation error
});
但是它没有任何作用。
答案 0 :(得分:1)
请尝试使用。attachBrowserEvent而不是attachEvent:
control.attachBrowserEvent("mouseenter", function () {
console.log("test"); // Fixed compilation error
});