我已经从http://tablesorter.com/docs/实现了 JQuery 表排序器 。
排序部分工作正常,但我无法将背景图像放入表头。
HTML表格代码:
echo '<table id="viewAll" class="tablesorter">';
echo '<thead>';
echo '<tr>';
echo '<th>Product</th>';
echo '<th>PBI</th>';
echo '<th>Status</th>';
echo '<th>Summary</th>';
echo '<th>Record Created</th>';
echo '<th>Record Updated</th>';
echo '</tr>';
echo '</thead>';
获取背景图片的 CSS 代码:
table.tablesorter thead tr .header {
background-image: url(images/tablesorter/bg.gif);
background-repeat: no-repeat;
background-position: left top;
cursor: pointer;
}
正如我所说的排序工作正常,我可以获得光标指针,但似乎无法打开背景图像。
我错过了什么..?