setTimeout(function() {
//选择时背景颜色变量
//鼠标点击
$(".x-table tr td").mousedown(function() {
//所在行背景色:黄色
$(this).css("background-color","yellow");
//所在行单元格字体:18px
$(this).find("td").css("font-size","18px");
});
}, 500);
_____
背景色(background-color)-背景图片(background-image)
——————————————————
