你應該能夠做這樣的事情:
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after {
display:none;
}
table.dataTable thead .sorting_desc::after {
display:none;
}
table.dataTable thead .sorting {
background-image: url(https://datatables.net/media/images/sort_both.png);
background-repeat: no-repeat;
background-position: center right;
}
table.dataTable thead .sorting_asc {
background-image: url(https://datatables.net/media/images/sort_asc.png);
background-repeat: no-repeat;
background-position: center right;
}
table.dataTable thead .sorting_desc {
background-image: url(https://datatables.net/media/images/sort_desc.png);
background-repeat: no-repeat;
background-position: center right;
}
示範見this jsFiddle。
您也可以使用其他字形如下圖所示:
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after {
content: "\e252";
}
table.dataTable thead .sorting_desc::after {
content: "\e253";
}
示範見this jsFiddle。
此外,可選地,你可以得到完全利用我的original answer擺脫引導風格。
Gyrocode,對不起,延遲迴復給你。我其實很喜歡你的第二個建議,因爲它覆蓋了較少的原始CSS。作爲獎勵,上下三角形的glyphicon比原來的DataTable更容易查看!謝謝你的幫助。 – LWK69