这些蓝色的我都加了链接 我现在想实现点击过的那些 蓝色的变成紫色 在刷新这个页面前都是紫色
//鼠标点击
$(".x-table td").mousedown(function() {
//所在行背景色:黄色
$(this).css("background-color","yellow");
//所在行单元格字体:18px
$(this).css("font-size","18px");
});
写在加载结束事件里
不对。。算了。
$(".x-table td").click(function() {//所在行背景色:黄色 $(this).css("background-color","DarkViolet ");//所在行单元格字体:18px $(this).css("font-size","18px");}); 在页面加载事件里面添加
现在的人越来越优秀了