jQuery dataTable不显示排序图标

前端之家收集整理的这篇文章主要介绍了jQuery dataTable不显示排序图标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用一个jQuery dataTable插件.问题是不显示排序图标(指向哪个方向数据实际排序的箭头).

我的代码如下所示:

$('#example').dataTable(
{
    "bPaginate": false,"bFilter": false,"oLanguage": { "sInfo": ""}        
}
);

和Html:

<table class="surfClass" cellspacing="1" id="example">

<thead>
<tr>
    <th width="120px">Name</th>
    <th width="120px">The hourly rate (points)</th>
    <th>Levels of referrals</th>
    <th>bonuses</th>
    <th width="70px">Payout minimum</th>
</tr>
</thead>

解决方法

我有这个问题,我发现因为我已经将CDN脚本复制到我的本地机器,它没有正确地引用图像,正如@ Matt2012指出的.所以我的解决方案是更新CSS文件,以寻找那些我想要放置它们的图像,在我也保存它们之后.

看这部分:

table.dataTable thead .sorting { background: url('/Content/images/sort_both.png') no-repeat center right; }
table.dataTable thead .sorting_asc { background: url('/Content/images/sort_asc.png') no-repeat center right; }
table.dataTable thead .sorting_desc { background: url('/Content/images/sort_desc.png') no-repeat center right; }

table.dataTable thead .sorting_asc_disabled { background: url('/Content/images/sort_asc_disabled.png') no-repeat center right; }
table.dataTable thead .sorting_desc_disabled { background: url('/Content/images/sort_desc_disabled.png') no-repeat center right; }
原文链接:https://www.f2er.com/jquery/180376.html

猜你在找的jQuery相关文章