Why is document.write considered a "bad practice"?

I know document.write is considered bad practice; and I'm hoping to compile a list of reasons to submit to a 3rd party vendor as to why they shouldn't use document.write in implementations of their analytics code.

Please include your reason for claiming document.write as a bad practice below.


A few of the more serious problems:

  • document.write (henceforth DW) does not work in XHTML

  • DW does not directly modify the DOM, preventing further manipulation (trying to find evidence of this, but it's at best situational)

  • DW executed after the page has finished loading will overwrite the page, or write a new page, or not work

  • DW executes where encountered: it cannot inject at a given node point

  • DW is effectively writing serialised text which is not the way the DOM works conceptually, and is an easy way to create bugs (.innerHTML has the same problem)

  • Far better to use the safe and DOM friendly DOM manipulation methods


    There's actually nothing wrong with document.write , per se. The problem is that it's really easy to misuse it. Grossly, even.

    In terms of vendors supplying analytics code (like Google Analytics) it's actually the easiest way for them to distribute such snippets

  • It keeps the scripts small
  • They don't have to worry about overriding already established onload events or including the necessary abstraction to add onload events safely
  • It's extremely compatible
  • As long as you don't try to use it after the document has loaded, document.write is not inherently evil, in my humble opinion.


    Another legitimate use of document.write comes from the HTML5 Boilerplate index.html example.

    <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>
    <script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.3.min.js"></script>')</script>
    

    I've also seen the same technique for using the json2.js JSON parse/stringify polyfill (needed by IE7 and below).

    <script>window.JSON || document.write('<script src="json2.js"></script>')</script>
    
    链接地址: http://www.djcxy.com/p/8394.html

    上一篇: ng的正确语法是什么?

    下一篇: 为什么document.write被认为是“不好的做法”?