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

javascript - HTML Multiple Heads - Stack Overflow

programmeradmin1浏览0评论

NOTE: I am in no way advocating multiple heads within a page


I'm using Apache Tiles and I have a few tiles that include their own heads. The result of the Tiles renders into an HTML page with multiple heads.

My questions:

  1. How is the resulting page handled in IE and Chrome? [It renders and appears successful]
  2. WITH APACHE TILES What is the best practice for dealing with/avoiding multiple heads [for CSS/Javascript] without having to demand all pages use the same JS and CSS files.

For Example with Question Two: Lets say you have the following pages: home, profile, and gallery listing. Gallery listing has fancy JQuery+YUI+... and more styles. For most users, they would only be interested in the home and profile pages, so why slow them down with loading the JS and CSS files associated with Gallery.

This is what is generated

<html>
    <head>
       <title>The Template's Title</title>
    </head>
    <body>
       <head> <script src="javascriptfile.js"/></head> Tile One Content
       <head> <script src="javascriptfile2.js"/></head> Title Two Content
    </body>
</html>

The generated contents is running the script in javascriptfile.js, and javascriptfile2. What I'm asking in the first question: is the extra heads ignored, and the contents considers? are they combined into the html/head level? Is it possible to include CSS files in the second or later head? Will this create an error with a stricter DTD?


NOTE: I am in no way advocating multiple heads within a page


I'm using Apache Tiles and I have a few tiles that include their own heads. The result of the Tiles renders into an HTML page with multiple heads.

My questions:

  1. How is the resulting page handled in IE and Chrome? [It renders and appears successful]
  2. WITH APACHE TILES What is the best practice for dealing with/avoiding multiple heads [for CSS/Javascript] without having to demand all pages use the same JS and CSS files.

For Example with Question Two: Lets say you have the following pages: home, profile, and gallery listing. Gallery listing has fancy JQuery+YUI+... and more styles. For most users, they would only be interested in the home and profile pages, so why slow them down with loading the JS and CSS files associated with Gallery.

This is what is generated

<html>
    <head>
       <title>The Template's Title</title>
    </head>
    <body>
       <head> <script src="javascriptfile.js"/></head> Tile One Content
       <head> <script src="javascriptfile2.js"/></head> Title Two Content
    </body>
</html>

The generated contents is running the script in javascriptfile.js, and javascriptfile2. What I'm asking in the first question: is the extra heads ignored, and the contents considers? are they combined into the html/head level? Is it possible to include CSS files in the second or later head? Will this create an error with a stricter DTD?

Share Improve this question edited Sep 28, 2011 at 10:14 scunliffe 63.6k26 gold badges131 silver badges165 bronze badges asked Sep 27, 2011 at 20:40 monksymonksy 14.2k18 gold badges77 silver badges128 bronze badges 11
  • 1 Are the <head>'s necessary in the templates? – mellamokb Commented Sep 27, 2011 at 20:43
  • 3 @monksy: Why on earth would you add multiple head sections in an HTML document??? – PeeHaa Commented Sep 27, 2011 at 20:44
  • 3 Technically it should be possible to have more than one head section, but I would do anything humanly possible to avoid it like the plaig. – adeneo Commented Sep 27, 2011 at 20:45
  • 6 crazy post of the day! – vtortola Commented Sep 27, 2011 at 20:51
  • 2 Their classpath is: localhost.home. So you might want to do a whois on localhost... it'll give you their location. – monksy Commented Sep 27, 2011 at 20:59
 |  Show 6 more comments

4 Answers 4

Reset to default 8

Well, in modern Chrome, it's at least possible to know what happens. Chrome uses the HTML5 parser algorithm which describes exactly how invalid mark-up is processed. The gory details are at http://dev.w3.org/html5/spec/tree-construction.html#parsing-main-inbody

What happens in your example is that the first <head> in <body> is discarded. Then the <script src="javascriptfile.js"/> tag is processed, which is a start tag, not a self-closing tag, so everything that follows, including everything that looks like a tag, becomes a text child of the script element. Nothing is displayed and no script is run. If <script src="javascriptfile.js"/> is replaced by <script src="javascriptfile.js"></script>, and ditto for <script src="javascriptfile2.js"/>, the head start and end tags are silent discarded, and the script elements are not moved. "Tile One Content Title Two Content" is displayed and the scripts are run. The DTD makes no difference at all.

IE is somewhat trickier to know, as before IE10, it doesn't use the HTML5 parser algorithm and therefore it's exact behaviour is a mystery. However, a cursory experiment appears to show that it has the same behaviour as described above.

Although some legacy browsers move elements that can only appear in the head - such as <link> - into the head, other browsers do not, and no such behaviour can be relied upon.

All in all, best steer well clear of such constructs.

I don't know about practices for Apache Tiles.

What is the purpose of doing something so egregiously invalid? And why you're asking this seems very unclear.

Not only should you only have ONE <head></head> section on a page, under no circumstances is the <head></head> to be nested anywhere inside the <body></body> section.

This practice makes absolutely no sense whatsoever....

(Side-note: Certain browsers ignore or move invalid tags when the DOM is constructed which will defeat your entire purpose of doing this.)

EDIT (based on comments):

For anyone interested in including <script> tags within the <body>, you can read more about the specific details in my answer here...

Will linking javascript files in the body rather than in the header cause a problem?

You don't really need extra heads to include additional css/js. You can 'inline' the whole <style type="text/css">...</style> part and it will render fine. Will it validate? No. But will run fine.

How is the resulting page handled in IE and Chrome? [It renders and appears successful]

I don't know and I really don't want to know.

What is the best practice for dealing with multiple heads [for CSS/Javascript] without having to demand all pages use the same JS and CSS.

Don't do it :-)

Is there a reason you can't just include the JS files in the body / head without the extra tags?

Or add the css / js files in the 'normal' head section of the document (where it should be).

Well atleast you want the CSS files to be loaded as soon as the page starts loading. JS files can (sometimes) be loaded at the end of the HTML.
For example if the JS files need to have a completely loaded DOM (for e.g. accessing DOM elements).

Note

Sorry this isn't really an answer to your question, however what you are doing just looks way bad. :) And is almost certainly not needed / there will be a better solution for it.

发布评论

评论列表(0)

  1. 暂无评论