冻结最后一列
在分页预览加载结束事件中增加样式调整
$("tr td:last-child").css({"position":"sticky","right":"0px"});
多列冻结
$("tr td:last-child").css({"position":"sticky","right":"0px"});
$("tr td:nth-last-child(2)").css({"position":"sticky","right":"60px"});
$("tr td:nth-last-child(3)").css({"position":"sticky","right":"120px"});