bootstrap table关于排序列添加图标的方法--查漏补缺

来源:互联网 发布:龙之谷数据库 编辑:程序博客网 时间:2024/06/06 00:11

style中设置如下:

 .fixed-table-container thead th .sortable{
    background-image:url('/image/sort.png');cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px
    }
    .fixed-table-container thead th .asc{
    background-image:url('/image/sort_asc.png');cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px
    }
    .fixed-table-container thead th .desc{
    background-image:url('/image/sort_desc.png');cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px
    }


其中图片url('/image/sort.png'),url('/image/sort_asc.png'):url('/image/sort_desc.png'),可以自己画啊

下面是我自己画的,路径什么的自己配好。