gpt4 book ai didi

javascript - 使用jquery隐藏表头中的图像

转载 作者:行者123 更新时间:2023-12-02 17:20:44 24 4
gpt4 key购买 nike

我有一个表格标题

<table class="tablestyle" id="tabHistory">
<tr>
<th style="min-width:15%;" onclick="javascript:doSort('0', 'Test Name');"> name</th>
<th style="min-width:18%;" onclick="javascript:doSort('1', 'platform');">Plat</th>
<th style="min-width:20%;" onclick="javascript:doSort('2', 'Test Server');"> Server</th>
<th style="width:3%;"></th>
<tr>
</table>

代码

function doSort(index, column) {
var sortIndex = 'i' + index;
sortOrder[sortIndex] = (sortOrder[sortIndex] == "asc") ? "desc" : "asc";


var options = {"sortby":column, "order":sortOrder[sortIndex]};
displayHistory(options, function() {
var bgImg = (sortOrder[sortIndex] == "asc") ? "./images/asc.gif" : "./images/desc.gif";
$("#tabHistory th").eq(index).css({
"background-image": "url(" + bgImg + ")"
});
});
}

在表头中显示每个标题中的图像。我只想在名称和服务器标题中显示图像,而不是在平台标题中显示图像。如何从平台标题中隐藏图像?

最佳答案

您可以使用:

$("#tabHistory th").eq(1).css("background-image", "none");

Working Example

关于javascript - 使用jquery隐藏表头中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23988553/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com