이 글에서는 bootstrapTable이 행(rowStyle)과 열(cellStyle)의 색상을 동적으로 설정하는 방법을 소개합니다. 도움이 필요한 친구들이 모두 참고할 수 있기를 바랍니다.
【관련 추천: "부트스트랩 튜토리얼"】
행 색상을 동적으로 수정하는 방법
rowStyle: function(row, index) { // 参数说明: //row, 行,row.xxx,能获取某个字段的值 //index,索引,第几行 // 逻辑判断 // ..... return {css:{"background-color":'rgba(245,245,245,0.7)'}}; }
열(셀) 색상을 동적으로 수정하는 방법
cellStyle:function(value,row,index){ // 参数说明: // value ,当前单元格的值 // row,当前行的值 //index ,第几行 // 逻辑判断 // ..... return {css:{"background-color":"rgba(255,250,250,0.7)"}}; }
지침:
열의 옵션 구성. 두
위치의 가장 큰 차이점은 다음과 같습니다.
function load() { $('#exampleTable').bootstrapTable({ url : "/config/list", queryParams : function(params) { return { limit: params.limit, offset: params.offset, } }, rowStyle: function(row, index) { // 动态修改行的颜色 var isDel = $.trim(row.isDel); if(isDel=="1"){ // 如果值是1,表示已删除,设置行的颜色 return {css:{"background-color":'rgba(245,245,245,0.7)'}}; } return ''; // 即使不改变颜色,也得返回 '' ,否则会报错。 }, columns : [ { checkbox : true, }, { field : 'platformName', title : '平台名称' , width : 140, }, { field : 'ydaaa', title : '移动的aaa' , width : 140, cellStyle : function(value,row,index){ // 修改列(单元格)的颜色 return {css:{"background-color":"rgba(255,250,250,0.7)"}}; } }, { field : 'ydbbb', title : '移动的bbb' , width : 140, formatter : function(value, row, index) { value=$.trim(value); if(value.length>25){ return value.substr(0,24)+"..."; } return value; }, }, { field : 'ltaaaa', title : '联通的aaaa' , width : 140, cellStyle:function(value,row,index){ // 修改列(单元格)的颜色 return {css:{"background-color":"rgba(248,248,255,0.7)"}}; } }, { field : 'ltbbbb', title : '联通的bbbb' , width : 140, formatter : function(value, row, index) { value=$.trim(value); if(value.length>25){ return value.substr(0,24)+"..."; } return value; } }, { field : 'dxaaaa' , title : '电信的aaaaa' , width : 140 , cellStyle:function(value,row,index){ // 修改列(单元格)的颜色 return {css:{"background-color":"rgba(240,255,240,0.7)"}}; } }, { field : 'dxbbbbb' , title : '电信的bbbbb' , width : 140 , }, { field : 'isDel', title : '是否删除' , width : 80, formatter : function(value, row, index) { value=$.trim(value); if(value=="0"){ return "正常"; }else if(value=="1"){ return "已删除"; } return ""; } }, { field : 'createTime', title : '创建日期' , width : 140, formatter : function(value, row, index) { value = $.trim(value) ; if(value.length >= 19){ return value.substr(0 , 19); } return value; } }, { title : '操作', field : 'id', align : 'center', width : 200, formatter : function(value, row, index) { return '' ; } } ] }); }
설명:
{css:{"background-color":"rgba(255,250,250,0.7)"}};
中 0.7
투명도를 의미합니다.
두 개의(행과 열) 색상이 교차할 때 교차하는 셀에서 두가지 색상이 보입니다. 아래 그림과 같이:
더 많은 프로그래밍 관련 지식을 보려면 프로그래밍 입문을 방문하세요! !
위 내용은 bootstrapTable에서 행 및 열 색상을 동적으로 설정하는 방법에 대한 간략한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!