点击模板>模板 Web 属性>填报页面设置,去除填报当前编辑行背景设置的勾选,在事件设置中添加一个【加载结束】事件:
$(".x-table tr").mousemove(function() {
$(this).css("background-color","red");
$(this).find("td").css("font-size","18px");
});
$(".x-table tr").mousedown(function() {
$(this).css("background-color","yellow");
$(this).find("td").css("font-size","18px");
});
$(".x-table tr").mouseout(function() {
$(this).css("background-color","white");
$(this).find("td").css("font-size","12px");
});