最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What is the correct way to hide HTML elements on page load before they are displayed? - Stack Overflow

programmeradmin0浏览0评论

I have found numerous partial answers to this question, but nothing that seems like a definitive answer. For such an important technique I find this a little strange.

How should I hide elements (using javascript) so that they do not appear briefly when the page loads before the JS has a chance to hide them? I don't want to set them to hidden initially with CSS as if a user doesn't have Javascript, they will see nothing.

To be clear. I'm not asking how to handle displaying content to users who don't have JS. That is an entirely different subject. I just want a reliable way to hide HTML elements before they are displayed.

So my requirements:

  1. HTML elements are not hidden initially using CSS
  2. If JS is available, these elements are hidden so that they are never displayed, not even for an instant. This means hiding them from JS loaded at the end of the body is out).

I have found numerous partial answers to this question, but nothing that seems like a definitive answer. For such an important technique I find this a little strange.

How should I hide elements (using javascript) so that they do not appear briefly when the page loads before the JS has a chance to hide them? I don't want to set them to hidden initially with CSS as if a user doesn't have Javascript, they will see nothing.

To be clear. I'm not asking how to handle displaying content to users who don't have JS. That is an entirely different subject. I just want a reliable way to hide HTML elements before they are displayed.

So my requirements:

  1. HTML elements are not hidden initially using CSS
  2. If JS is available, these elements are hidden so that they are never displayed, not even for an instant. This means hiding them from JS loaded at the end of the body is out).
Share Improve this question edited Oct 12, 2012 at 17:10 Undistraction asked Oct 12, 2012 at 16:41 UndistractionUndistraction 43.4k63 gold badges206 silver badges336 bronze badges 3
  • Sounds like two separate issues. First, how do you hide elements initially, and secondly what do you do if clients don't have javascript (enabled). Careful not to make these one question. – Erik Philips Commented Oct 12, 2012 at 16:43
  • 1 I think maybe using modernizr would help. You still can specify using CSS to hide elements, so for browsers without javascript, you can use .no-js class to override the styles to display them. But I'm not so sure about the initial "flashing" of elements being displayed. That's to do with how code is structured and how web browsers parses and displays them. – VKen Commented Oct 12, 2012 at 16:46
  • @Erik Philips. I only mention that requirement to avoid receiving answers like 'set the elements to display:hidden' in your stylesheet.' – Undistraction Commented Oct 12, 2012 at 16:51
Add a ment  | 

4 Answers 4

Reset to default 5

Like VKen, I prefer to use moderizr and Paul Irish's structure for the html element (which is what HTML5 Boilerplate uses)

<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->

Then in the style sheet:

.element-to-hide { display: none; }

.no-js .element-to-hide { display: block; }

Works great, no flash of elements disappearing.

A solution is to use javascript to include an optional CSS file in which you hide those divs.

Put this in your HEAD section :

<script>document.write('<link rel="stylesheet" type="text/css" href="hiding.css"/>');</script>

And in hiding.css :

div.mySelector {
   display:none;
}

If you don't have additional css to set, you may also more simply inline the css rule in javascript (still in the HEAD) :

<script>
document.write('<style type="text/css">div.mySelector {display:none; }</style>');
</script>

If Javascript isn't available, the divs won't be hidden. And if it is available, the CSS will be used to hide the div before they're displayed.

Use a descendent binator and make the body a member of a class as soon as possible.

<style>
    /* js only element */
    .js foo { display: none; }
</style>
</head>
<body>
<script> document.body.className += " js"; </script>

you could do a <noscript> tag and overwrite the initial css for those with javascript disabled

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论