0

我通过 W3 验证器运行我的代码。

它给了我这个错误:

“在此上下文中,不允许将元素 noscript 作为元素图片的子元素。(抑制此子树中的进一步错误。)”

如何改进代码以避免在元素中出现?

<picture>

    <source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
    <img src="mdn-logo-narrow.png" alt="MDN">

    {# When lazyloading, include noscript to still render image when JS is off #}
    {% if lazyload %}
      <noscript>
        <img src="mdn-logo-narrow.png" alt="MDN">
      </noscript>

</picture>

4

0 回答 0