Javascript 为什么IE8中没有显示tablesorter图像?

Javascript 为什么IE8中没有显示tablesorter图像?,javascript,html,css,Javascript,Html,Css,我正在使用表格分类功能和css,如下所示。下面的css在ie9中工作,但在IE8中没有显示图像。有人能帮我解决这个问题吗 table.tablesorter tbody td.result, table.tablesorter tbody tr.result{ background: #A4D3EE; } table.tablesorter { font-family:arial; color: rgb(51, 51, 51); margin:10px

我正在使用表格分类功能和css,如下所示。下面的css在ie9中工作,但在IE8中没有显示图像。有人能帮我解决这个问题吗

table.tablesorter tbody td.result,  table.tablesorter tbody tr.result{
     background: #A4D3EE;
  }

table.tablesorter {
    font-family:arial;
    color: rgb(51, 51, 51);
    margin:10px 0pt 15px;
    font-size: 10pt;
    width: 100%;
    text-align: left;
 }
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
    background-color: #8dbdd8;
    border: 1px solid #FFF;
    font-size: 10pt;
    padding: 5px;
}
table.tablesorter thead tr .header:not(.nosort) {
    background-image: url('/sorter/bg.gif');  
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}
table.tablesorter tbody td {
        background-color: rgb(239, 243, 251);
        padding: 5px;
        border: solid 1px #e8eef4;

    vertical-align: top;
}
table.tablesorter tbody tr.odd td {
    background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp:not(.nosort) {
    background-image: url('/sorter/asc.gif'); 
}
table.tablesorter thead tr .headerSortDown:not(.nosort) {
    background-image: url('/sorter/desc.gif'); 
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}

请告诉我为什么没有在IE8中加载图像。asc、desc图像正在其他浏览器中加载。但是IE8没有显示。

在我的项目中工作正常。你可能需要清理IE8的缓存吗?测试人员将其视为bug如何避免此bug?无法缓存客户端浏览器。请告诉我我自己没有在IE8中获得图像。正在删除浏览器我正在获取图像。