假如只冻结首行
用js。。web里面填报加载结束
$(".x-table tr").mousedown(function() {
if (this.id !== 'r-0-0') {
var row = $(this).attr("tridx")
$(".x-table tr").each(function() {
if (this.id !== 'r-0-0') {
if (row != $(this).attr("tridx")) {
$(this).children("td").each(function() {
$(this).css("background-color", 'white');
});
} else {
$(this).children("td").each(function() {
$(this).css("background-color", 'rgb(255, 255,0)');
})
}
}
});
}
});