bootstrap隐藏元素的方法:首先打开相应的代码文件;然后在bootstrap中通过给元素添加“display:none;”或“visibility:hidden;”样式来隐藏元素即可。
本教程操作环境:windows7系统,bootstrap3版本,Dell G3电脑。
相关教程推荐:《bootstrap教程》
显示和隐藏DIV的技巧
使用bootstrap的12分栅来演示
brush:js;toolbar:false">document.getElementById("typediv1").style.display="none";//隐藏 document.getElementById("typediv1").style.display="";//显示
方法:
style="visibility:hidden;" 隐藏后不释放空间 document.getElementById("typediv1").style.visibility="hidden";//隐藏 document.getElementById("typediv1").style.visibility="visible";//显示
代码:
以上就是bootstrap 怎么隐藏元素的详细内容,更多请关注其它相关文章!