这是JS ,如何修改可以让第一行或者前两行鼠标悬浮不变色//鼠标悬浮时,改变单元格行背景色._g().getWidgetByName('report1').makeHeightLine('blue', 'mouseover')//鼠标点击,改变单元格行背景色:_g().getWidgetByName('report1').makeHeightLine('blue', 'mousedown')// 鼠标悬浮+点击,改变单元格行背景色:_g().getWidgetByName('report1').makeHeightLine('blue')//保持颜色不变的用法//_g().getWidgetByName("report1").makeHeightLineHold('red');//_g().getWidgetByName("report1").makeHeightLineHold('red', true);_g().getWidgetByName('report1').makeFontLine( { color: 'red',//颜色 bold:true,//加粗 italic:true,//斜体 fontFamily:'Arial',//字体 strikeThrough:true,//删除线 fontSize:15,//字号 subscript:false,//下标 supscript:false,//上标 textShadow:true,//文字阴影 underLine://下划线 { width:5,//下划线的宽度 style:'solid',//下划线样式 color:'yellow',//下划线颜色 } },'mouseover'); //鼠标点击,使用mousedown