我想隱藏所有使用jquery函數$('#divid').css("visibility", 'hidden');
從引導中使用的類行,但沒有任何反應。有任何想法嗎?如何在html中隱藏行
1
A
回答
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");
相關問題
- 1. 如何隱藏在HTML
- 2. 如何在html中隱藏按鈕?
- 3. 如何在html中隱藏滾動條?
- 4. 如何通過索引隱藏HTML行?
- 5. 如何隱藏html div
- 6. 如何隱藏HTML按鈕
- 7. 如何隱藏HTML標籤?
- 8. 如何隱藏回答HTML
- 9. 如何使用Javascript在HTML表中隱藏多行
- 10. 在url中隱藏.html
- 11. HTML隱藏表格行
- 12. 隱藏在HTML/CSS
- 13. 如何隱藏JSP中的HTML對象?
- 14. 如何隱藏HTML iframe中的元素?
- 15. 如何隱藏HTML表中的列?
- 16. 如何隱藏文本在HTML文本
- 17. 如何在jqgrid中隱藏行?
- 18. 如何在JavaScript中隱藏上一行?
- 19. 如何隱藏行組中的一行?
- 20. 隱藏HTML
- 21. 隱藏HTML
- 22. html src隱藏
- 23. 如何在nginx中隱藏#
- 24. 如何在隱藏「dd」後隱藏「dd」
- 25. 如何比較單元格值並隱藏html表中的行
- 26. DataGridView - 如何隱藏「新」行?
- 27. 如何隱藏某一行
- 28. 如何隱藏在
- 29. 如何在Java中使用Apache Poi取消隱藏Excel中的隱藏行?
- 30. Zend隱藏的元素:隱藏html值
可能的重複 - 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-一個特定的類 –
[jQuery的可能的重複 - 獲得所有的div內的類與「.container」](http://stackoverflow.com/questions/5977699/jquery-get-all-divs-inside-a- div-with-class-container) –