0
正如標題所述,我們可以隱藏表的特定字段嗎?示例我想隱藏第6列第5行。BTW我使用codeigniter,postgresql,php。隱藏表codeigniter的特定字段,postgresql
正如標題所述,我們可以隱藏表的特定字段嗎?示例我想隱藏第6列第5行。BTW我使用codeigniter,postgresql,php。隱藏表codeigniter的特定字段,postgresql
如果你是知道的jQuery試試這個
$(document).ready(function(){
$('#IdOfTable tr').eq(4).find('td').eq(5).css('visiblity','hidden');
// hidding sixth column of fifth row at the time, your page is loaded
})
編輯:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#IdOfTable tr').eq(4).find('td').eq(5).css('visiblity','hidden');
// hidding sixth column of fifth row at the time, your page is loaded
})
</script>
我敢肯定,你可以用CSS類做到這一點很容易,例如:
.my-table tr:nth-child(2) td:nth-child(4){
display: none;
}
使用nth-child
選擇器,您可以使課程隱藏,只要您認爲合適。
我猜你的jQuery包括 –
我明白了。那麼我可以在使用codeigniter,postgresql和php時使用jQuery嗎? – Kino
@Kino我做了一個編輯,以包含jQuery谷歌託管的lib。你可以在任何webproject idealy中使用jquery –