[removed] Inline Script with SRC Attribute?

后端 未结 3 1369
暗喜
暗喜 2020-11-22 14:40

I\'m used to including and using JS like so:


....


        
相关标签:
3条回答
  • 2020-11-22 15:07

    It's either one or the other, not both. The src attribute of the <script> tag has precedence over the body of the tag.

    HTML 4.01 Specification:

    The script may be defined within the contents of the SCRIPT element or in an external file. If the src attribute is not set, user agents must interpret the contents of the element as the script. If the src has a URI value, user agents must ignore the element's contents and retrieve the script via the URI.

    0 讨论(0)
  • 2020-11-22 15:09

    From the HTML 4 standard:

    If the src attribute is not set, user agents must interpret the contents of the element as the script. If the src has a URI value, user agents must ignore the element's contents and retrieve the script via the URI.

    0 讨论(0)
  • 2020-11-22 15:16

    The HTML specification states

    If the src has a URI value, user agents must ignore the element's contents and retrieve the script via the URI.

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