久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      bootstrap table給行怎么加背景色

      bootstrap table給行怎么加背景色

      bootstrap table給行怎么加背景色

      bootstrap table定義代碼:

      $table.bootstrapTable({     showExport: true,     height: 540,     rowStyle:rowStyle,//通過自定義函數(shù)設(shè)置行樣式     columns: [         {             field: 'id',             title: '序號',             align: 'center',             sortable: true         }, {             field: 'sid',             title: '學號',             align: 'center'         },     ] });

      bootstrapTable設(shè)置行樣式(背景顏色)函數(shù)1:通過調(diào)用bootstrap默認的樣式來設(shè)置指定行的背景顏色

      function rowStyle(row, index) {     var classes = ['active', 'success', 'info', 'warning', 'danger'];     if (index % 2 === 0 && index / 2 < classes.length) {         return {             classes: classes[index / 2]         };     }     return {}; }

      bootstrapTable設(shè)置行樣式(背景顏色)函數(shù)2:調(diào)用自定義樣式設(shè)置指定行的字體顏色

      function rowStyle(row, index) {     var style = {};                 style={css:{'color':'#ed5565'}};                    return style; }

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號