日期:2014-05-17 浏览次数:21101 次
$(function ($) {
//行颜色效果
$('.all_cont tr').hover(
function () {
$(this).children().css('background-color', '#ffff00');
$(this).find("td").css('color', 'red');
},
function () {
$(this).children().css('background-color', '#fff');
$(this).find("td").css('color', 'black');
});
});
$('.all_cont tr:has(td)').hover(
function () {
$(this).children().css('background-color', '#ffff00');
$(this).find("td").css('color', 'red');
},
function () {
$(this).children().css('background-color', '#fff');
$(this).find("td").css('color', 'black');
});