<noscript> 可以列出多项资产吗?
Can <noscript> have multiple assets listed?
<noscript>
标签可以包含多个资产吗?示例:
<noscript>
<link rel="stylesheet" href="css/main.min.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
</noscript>
还是每个资产都需要在自己的 <noscript>
标签中?
When scripting is disabled and when it is a descendant of the <head>
element: in any order, zero or more <link>
elements, zero or more <style>
elements, and zero or more <meta>
elements.
When scripting is disabled and when it isn't a descendant of the <head>
element: any transparent content, but no <noscript>
element must be among its descendants.
Otherwise: flow content or phrasing content.
在您的情况下,多个 link
元素就可以了。
<noscript>
标签可以包含多个资产吗?示例:
<noscript>
<link rel="stylesheet" href="css/main.min.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
</noscript>
还是每个资产都需要在自己的 <noscript>
标签中?
When scripting is disabled and when it is a descendant of the
<head>
element: in any order, zero or more<link>
elements, zero or more<style>
elements, and zero or more<meta>
elements.When scripting is disabled and when it isn't a descendant of the
<head>
element: any transparent content, but no<noscript>
element must be among its descendants. Otherwise: flow content or phrasing content.
在您的情况下,多个 link
元素就可以了。