在报表块加初始化事件
setTimeout(function(){
//定义判断颜色的正则表达式
var reg = /^([0-9a-fA-F]{6})$/;
//遍历td
$("td").each(function(){
//正则校验,符合则执行
if(reg.test($(this).text())){
//或则符合正则的单元格内容并添加#
var colorValue = '#' + $(this).text();
//修改单元格背景和字体颜色
$(this).css('background-color', colorValue);
$(this).css('color', colorValue);
}
});
},500);