I see in some posts that people frown upon using document.write() in javascript when writing dynamic HTML.
Why is this? and what is the correct way?
|
4
|
I see in some posts that people frown upon using Why is this? and what is the correct way?
|
||||||||||||||
|
|
|
document.write() will only work while the page is being originally parsed and the DOM is being created. Once the browser gets to the closing tag and the DOM is ready, you can't use document.write() anymore. I wouldn't say using document.write() is correct or incorrect, it just depends on your situation. In some cases you just need to have document.write() to accomplish the task. Look at how google analytics gets injected into most websites. After DOM ready, you have two ways to insert dynamic HTML (assuming we are going to insert new html into <div id="node-id"></div>): 1- using innerHTML on a node-
2- using DOM methods-
Using the DOM API methods might be the purist way to do stuff, but innerHTML has been proven to be much faster and is used under the hood in js libraries such as jQuery. |
||||||||||||
|
|
|
Surely the best way is to avoid doing any heavy HTML creation in your JavaScript at all? The markup sent down from the server ought to contain the bulk of it, which you can then manipulate, using CSS rather than brute force removing/replacing elements, if at all possible. This doesn't apply if you're doing something "clever" like emulating a widget system. |
||
|
|
|
|
Perhaps a good idea is to use jQuery in this case. It provides handy functionality and you can do things like this:
Take a look at http://docs.jquery.com/Attributes/html#val for more information. |
||
|
|
|
|
DOM methods are highly preferable to strings for setting attributes and content. If you ever find yourself writing DOM methods are traditionally described as ‘slow’ compared to innerHTML. But this isn't really the whole story. What is slow is inserting a lot of child nodes:
This translates to a load of work for the DOM finding the right place in its nodelist to insert the element, moving the other child nodes up, inserting the new node, updating the pointers, and so on. Setting an existing attribute's value, or a text node's data, on the other hand, is very fast; you just change a string pointer and that's it. This is going to be much faster than serialising the parent with innerHTML, changing it, and parsing it back in (and won't lose your unserialisable data like event handlers, JS references and form values). There are techniques to do DOM manipulations without so much slow childNodes walking. In particular, be aware of the possibilities of |
||
|
|
|
|
I think you should use, instead of document.write, DOM javascript api like document.createElement, .createTextNode, .appendChild and similar. Safe and almost cross browser. ihunger's outerHTML is not cross browser, IE only |
||
|
|
|
|
There are many ways to write html with JavaScript. document.write is only useful when you want to write to page before it has actually loaded. If you use document.write() after the page has loaded (at onload event) it will create new page and overwrite the old content. Also it doesn't work with XML, that includes XHTML. From other hand other methods can't be used before DOM has been created (page loaded), because they work directly with DOM. These methods are:
In most cases node.innerHTML is better since it's faster then DOM functions. Most of the time it also make code more readable and smaller. |
|||
|
|
|
|
I'm not particularly great at JavaScript or its best practices, but And, as Tom mentioned, JavaScript is done after the page is loaded; it'd probably be a better practice to have the initial setup for your page to be done via standard HTML (via .html files or whatever your server does [i.e. php]). |
||||
|
|
|
One note on |
||
|
|
|
The document.write method is very limited. You can only use it before the page has finished loading. You can't use it to update the contents of a loaded page. What you probably want is innerHTML. |
||
|
|
|
|
You can change the innerHTML or outerHTML of an element on the page instead. |
||
|
|
|
Since the actual in-memory representation of HTML is the DOM, the best way to update a given page is to manipulate the DOM directly. The way you'd go about doing this would be to programmatically create your nodes and then attach them to an existing place in the DOM. For [purposes of a contrived] example, assuming that I've got a
|
||||||||
|