配置字段(居左,居中,居右,高度自适应)
Posted benbenjia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置字段(居左,居中,居右,高度自适应)相关的知识,希望对你有一定的参考价值。
var style = (lis.visible*1 === 0 ? ‘display: none;‘ : ‘‘);
var abbrStyle = ‘‘;
// style +=‘white-space:‘ +‘normal‘+‘;‘;
if(lis.note ===‘left‘) {
abbrStyle += ‘ text-align:left;‘
}else if(lis.note ===‘right‘) {
abbrStyle += ‘text-align:right;‘
} else if($.trim(lis.note) ===‘height-auto‘){
abbrStyle += ‘white-space:normal; text-align:left; text-overflow: normal;word-break: break-all;‘;
}
console.log(abbrStyle);
str += ‘<span data-func="‘ + lis.func + ‘" ‘ +
‘data-key="‘ + lis.key + ‘" ‘ +
‘data-select="‘ + lis.select + ‘" ‘ +
‘class=" ‘ + lis.cls + ‘ ‘ + lis.w + ‘ " ‘ +
‘style=" ‘ + fryyClass + style + ‘ " ‘ +
‘data-msg="‘+dataMsg+‘" ‘ +
‘data-verification="‘+lis.verification+‘" ‘ +
‘title="‘+ title +‘">‘ +
‘<abbr style="‘+abbrStyle+‘">‘+
value +
‘</abbr>‘ +
‘</span>‘;
后台:配置居左中右1,2,3;高度自适应:height-auto;
以上是关于配置字段(居左,居中,居右,高度自适应)的主要内容,如果未能解决你的问题,请参考以下文章