2012-01-25 58 views
2

我的意思是,有沒有什麼辦法知道列是否隱藏?我只是學會了隱藏他們如何獲得使用JQuery的列的狀態?

$('#tableG td:nth-child('+(index+1)+'), #tableG th:nth-child('+(index+1)+')').hide(); 

,但現在我需要得到的狀態,有沒有其它東西一樣:

if($('#tableG th:nth-child('+(index+1)+')').show() == true) { ... } 

回答

4

你想用這種表示法:

$(element).is(":visible") 

so:

if($('#tableG th:nth-child('+(index+1)+')').is(":visible")) {...}