我有简单的HTML表,有多行。我想得到我要离开的排。如何处理行离开或行更改事件并获取我要离开的行的ID?
提前致谢。
答案 0 :(得分:0)
使用.hover()
方法,第一个函数是鼠标输入的处理程序,第二个函数处理鼠标离开
//considers all rows except the first (usually used for headers)
$("tr").not(':first').hover(
function () {
//handles mouseenter
},
function () {
//handles mouseleave
}
);
您可以使用处理程序内的$(this)
来引用您要离开/进入的当前行