我目前正在使用此代码在 Google Chrome 扩展程序中绑定事件:
var bindEvent = function(elem ,evt,cb) {
//see if the addEventListener function exists on the element
if ( elem.addEventListener ) {
elem.addEventListener(evt,cb,false);
//if addEventListener is not present, see if this is an IE browser
} else if ( elem.attachEvent ) {
//prefix the event type with "on"
elem.attachEvent('on' + evt, function(){
/* use call to simulate addEventListener
* This will make sure the callback gets the element for "this"
* and will ensure the function's first argument is the event object
*/
cb.call(event.srcElement,event);
});
}
};
/* ... */
bindEvent(document,'click', function(event)
{ var target = event.target || event.srcElement;
/*Code to do stuff about a clicked element*/
this.removeEventListener('click',arguments.callee,false);
});
它适用于点击事件。现在,我的问题是:我可以使用什么事件来更改悬停而不是简单地单击的元素?最终目标是更改光标悬停的元素的背景颜色。
我试过了mouseover
,,mouseenter
但无济于事。确切地说,我试图在事件触发时做一个,但它从未真正发生过,除了有一次我单击一个对话框并且它检测到我对这个元素的关注。focus
focusin
console.log()
我目前正在使用 Chrome (v24.0),但跨浏览器解决方案将是一个不错的功能,因为我计划稍后在 Firefox 上重用该脚本。不过,这不是首要任务。