将jquery mouseover更改为窗口鼠标悬停

时间:2016-01-07 18:07:32

标签: javascript

我想更改它(在我的表中获取范围名称):

$('span').on('mouseover', function () {
    if (this.id.match(/_zUserId/)) {
        alert(this.id);
    }
}

使用:

window.onmouseover=function(e) {
    ...
    ...
}

但我无法弄清楚如何从e.target获取范围名称。我不知道在e.target之后要放置什么来获取范围名称。

1 个答案:

答案 0 :(得分:0)

Here the JSFiddle example.

window.onmouseover=function(e) {
    if (e.target.id=='mySpan') {
        alert(e.target.id);
    }
}