</script>
<style>
.over { background-color:#77DDFF;} //定義鼠標滑過的顏色
</style>
<script type="text/javascript">
$(function(){
$("#table1 tr").hover(function(){ //table1 指的是一個table的ID
$(this).addClass("over");
},function(){
$(this).removeClass("over");
});
});
</script>javascript