我想更改它(在我的表中获取范围名称):
$('span').on('mouseover', function () {
if (this.id.match(/_zUserId/)) {
alert(this.id);
}
}
使用:
window.onmouseover=function(e) {
...
...
}
但我无法弄清楚如何从e.target
获取范围名称。我不知道在e.target
之后要放置什么来获取范围名称。
答案 0 :(得分:0)
window.onmouseover=function(e) {
if (e.target.id=='mySpan') {
alert(e.target.id);
}
}