When is a CDATA section necessary within a script tag?

后端 未结 15 2270
时光说笑
时光说笑 2020-11-21 22:37

Are CDATA tags ever necessary in script tags and if so when?

In other words, when and where is this:



        
相关标签:
15条回答
  • 2020-11-21 23:07

    A CDATA section is required if you need your document to parse as XML (e.g. when an XHTML page is interpreted as XML) and you want to be able to write literal i<10 and a && b instead of i&lt;10 and a &amp;&amp; b, as XHTML will parse the JavaScript code as parsed character data as opposed to character data by default. This is not an issue with scripts that are stored in external source files, but for any inline JavaScript in XHTML you will probably want to use a CDATA section.

    Note that many XHTML pages were never intended to be parsed as XML in which case this will not be an issue.

    For a good writeup on the subject, see https://web.archive.org/web/20140304083226/http://javascript.about.com/library/blxhtml.htm

    0 讨论(0)
  • 2020-11-21 23:08

    When you want it to validate (in XML/XHTML - thanks, Loren Segal).

    0 讨论(0)
  • 2020-11-21 23:11

    CDATA indicates that the contents within are not XML.

    Here is an explanation on wikipedia

    0 讨论(0)
  • 2020-11-21 23:11

    to avoid xml errors during xhtml validation.

    0 讨论(0)
  • 2020-11-21 23:12

    HTML

    An HTML parser will treat everything between <script> and </script> as part of the script. Some implementations don't even need a correct closing tag; they stop script interpretation at "</", which is correct according to the specs.

    Update In HTML5, and with current browsers, that is not the case anymore.

    So, in HTML, this is not possible:

    <script>
    var x = '</script>';
    alert(x)
    </script>
    

    A CDATA section has no effect at all. That's why you need to write

    var x = '<' + '/script>'; // or
    var x = '<\/script>';
    

    or similar.

    This also applies to XHTML files served as text/html. (Since IE does not support XML content types, this is mostly true.)

    XML

    In XML, different rules apply. Note that (non IE) browsers only use an XML parser if the XHMTL document is served with an XML content type.

    To the XML parser, a script tag is no better than any other tag. Particularly, a script node may contain non-text child nodes, triggered by "<"; and a "&" sign denotes a character entity.

    So, in XHTML, this is not possible:

    <script>
    if (a<b && c<d) {
        alert('Hooray');
    }
    </script>
    

    To work around this, you can wrap the whole script in a CDATA section. This tells the parser: 'In this section, don't treat "<" and "&" as control characters.' To prevent the JavaScript engine from interpreting the "<![CDATA[" and "]]>" marks, you can wrap them in comments.

    If your script does not contain any "<" or "&", you don't need a CDATA section anyway.

    0 讨论(0)
  • 2020-11-21 23:13

    When you are going for strict XHTML compliance, you need the CDATA so less than and ampersands are not flagged as invalid characters.

    0 讨论(0)
提交回复
热议问题