Jquery 提供了一个hover()鼠标事件,允许附上两个事件处理器到匹配的元素上,当鼠标进入和离开匹配对象时执行。
$("#id").hover(A, B);
1 A—函数当鼠标进入匹配元素时被调用。
2 B—函数当鼠标离开匹配元素时被调用。
这是一个最好的函数用来高亮表格的行记录。请看jquery的代码片段:
$("tr").not(':first').hover(
function () {
$(this).css("background","yellow");
},
function () {
$(this).css("background","");
}
);
它将会高亮表格的记录行,用黄色。.not(“:first”) 的是一种通用的实现来避免高亮标题行。
自己试试:
<html>
<head>
<scripttype="text/javascript"src="jquery-1.4.2.min.js"></script>
</head>
<body>
<h1>Highlight table row record on hover - jQuery</h1>
<tableborder="1">
<tr><th>No</th><th>Name</th><th>Age</th><th>Salary</th></tr>
<tr><td>1</td><td>Yong Mook Kim</td><td>28</td><td>$100,000</td></tr>
<tr><td>2</td><td>Low Yin Fong</td><td>29</td><td>$90,000</td></tr>
<tr><td>3</td><td>Ah Pig</td><td>18</td><td>$50,000</td></tr>
<tr><td>4</td><td>Ah Dog</td><td>28</td><td>$40,000</td></tr>
<tr><td>5</td><td>Ah Cat</td><td>28</td><td>$30,000</td></tr>
</table>
<scripttype="text/javascript">
$("tr").not(':first').hover(
function () {
$(this).css("background","yellow");
},
function () {
$(this).css("background","");
}
);
</script>
</body>
</html>
效果: