setTimeout(function() {
$(".x-table td").mousemove(function() {
$(this).text('已选中');
});
}, 100);
放在模板web属性-分页预览设置-事件设置-加载结束
针对一个就这样
setTimeout(function() {
$(".x-table td").mousemove(function() {
var cellValue = $(this).text().trim();
var lineNum = $(this).attr("id");
var cell = lineNum.substring(0, lineNum.search("-"));
if (cell == 'A2') {
$(this).text('已签');
}
});
}, 100);
上面代码里if(cell==这里填你针对的单元格
---------
同时修改颜色那就加一行css属性的修改,这个你想要啥色号你就自己查去吧
setTimeout(function() {
$(".x-table td").mousemove(function() {
var cellValue = $(this).text().trim();
var lineNum = $(this).attr("id");
var cell = lineNum.substring(0, lineNum.search("-"));
if (cell == 'A2') {
$(this).text('已签');
$(this).css('background-color','#f0e229');//修改颜色
}
});
}, 100);