2016-10-25 69 views
1

我想隱藏所有使用jquery函數$('#divid').css("visibility", 'hidden');從引導中使用的類行,但沒有任何反應。有任何想法嗎?如何在html中隱藏行

+0

可能的重複 - HTTP://計算器。 com/questions/11410415/hide-table-rows-that-dont-have-a-certain-class http://stackoverflow.com/questions/10612379/jquery-hide-all-elements-with-certain-class-除了一個 http://stackoverflow.com/qu estions/1569457/hide-all-table-rows-that-lack-a-special-class http://stackoverflow.com/questions/4474429/jquery-to-hide-rows-that-do-not-have-一個特定的類 –

+0

[jQuery的可能的重複 - 獲得所有的div內的類與「.container」](http://stackoverflow.com/questions/5977699/jquery-get-all-divs-inside-a- div-with-class-container) –

回答

4

隱藏的類:

$('.divclass').hide(); 

隱藏通過ID:

$('#divid').hide(); 

隱藏的標籤:

$('div').hide(); // all div tag will be hide 
+1

欲瞭解更多信息:http://api.jquery.com/hide/ – Drefetr

0

我想隱藏的所有類

所以使用類,而不是ID))

$('.divclass').css("visibility", 'hidden'); 
0

你可以刪除行類

$("#divid .row").removeClass("row");