0

查看此页面,然后单击“表格”选项卡。

我正在尝试添加指示排序的三角形,如下所示(http://datatables.net/blog/Twitter_Bootstrap_2),但我无法弄清楚。实际的排序是有效的,而不是样式。

我怎样才能让它工作?

4

1 回答 1

2

您的带有类的表头.tablesorter-header缺少此 CSS(根据您的需要更改图像的 url):

table#national_universities_table thead tr .tablesorter-header {
    background-image: url("images/bg.gif");
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
}

table#national_universities_table thead tr .tablesorter-headerAsc {
    background-image: url("images/asc.gif");
}

table#national_universities_table thead tr .tablesorter-headerDesc {
    background-image: url("images/desc.gif");
}
于 2013-07-26T21:16:04.927 回答