Jquery立即隐藏元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery立即隐藏元素相关的知识,希望对你有一定的参考价值。
Handy. Hide an element as soon as possible, before document.ready. The element gets hidden but only when a class is applied to the html via js.
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="../assets/js/jquery.js"></script> <script type="text/javascript"> $(function () { $('html').addClass('no-message'); }); </script> </head> <body> <style type="text/css"> html.no-message .box {display:none;} </style> <p>In other news...</p> <div class="box"><p>I shoud be hidden!</p></div> </body> </html>
以上是关于Jquery立即隐藏元素的主要内容,如果未能解决你的问题,请参考以下文章
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段