我正在尝试将一些函数绑定到一个事件。以下代码在 Chrome 和 FF 中运行良好,但 IE 的相应代码是什么?
$this.mouseenter(function(){
console.log("inside the mouse enter handler");
});
我试过这个,但它在 IE 中不起作用:
$this.bind('mouseenter', function(){
console.log("inside the mouse enter handler");
});
我需要它至少在 IE 9 中工作。