想知道是否有人可以帮助我了解如何在鼠标悬停事件中针对元素的 ID 值进行测试。我想我必须使用“这个”。
我得到的 ID 值是“未定义”
function mouseOver() {
var e = $(this).attr("ID"); //need help with this bit
if (e == ("row2012")) {
alert(e)
} else {
alert(e);
}
}
<table>
<tr data-ng-repeat="x in Interruptions">
<td id=row{{x.year}} onmouseover="mouseOver()" onmouseout="mouseOut()">
{{x.year}}
</td>
<td>{{x.totalEvents}}</td>
<td>{{x.customers}}</td>
<td>{{x.avgDuration}}</td>
</table>
慕姐8265434
一只名叫tom的猫
波斯汪
相关分类