帆软点击选中单元格变色

Posted on 2021-09-29 16:07  飞行的蟒蛇  阅读(1146)  评论(0编辑  收藏  举报

setTimeout(function() {
//选择时背景颜色变量
var oldColor = "rgb(255, 255, 255)";
var newColor = "rgb(255, 0, 0)";
var index=0
$("[widgetname='REPORT1']").find("td[id^=B]").click(function() {
console.log(index)
$("[widgetname='REPORT1']").find("td[id^=B]")[index].style.color='blue'
$(this).css('color', newColor)
index = $("[widgetname='REPORT1']").find("td[id^=B]").index(this);

});
}, 1000);