我正在尝试使用Jquery来监听悬停:
$(editable).each(function () {
$(this).hover(function (event) {
event.stopPropagation();
$(this).toggleClass("inspect");
});
});
在Chrome中不起作用(使用v32),但在Firefox中使用(使用v25)。
editable = HTML元素数组(不是选择器,实际元素);
有什么想法吗?
答案 0 :(得分:0)
您是否尝试使用 mouseenter 事件?
答案 1 :(得分:0)
也许浏览器在此过程中丢失了元素引用,尝试验证它。
像这样......$(this).hover(
function(e) {
$(this).toggleClass("inspect");
},
function(e) {
if(e.relatedTarget){
// do what you need when mouseleaves here
}
});