1
<script>标记在<noscript>标记内部有什么作用?
最近,我在具有有趣设计和内容的网站上大举“查看源代码”。这些网站之一Squarespace在<script>标签内部具有多个<noscript>标签块,如下所示: <!-- Page is at: http://squarespace.com --> ... ... <noscript id="inline-deps"> <link rel="stylesheet" type="text/css" href="//cloud.typography.com/7811972/758964/css/fonts.css" /> <script type="text/javascript" src="https://static.squarespace.com/static/ta/5134cbefe4b0c6fb04df8065/7400/assets/logomark/logomark.min.js?37"></script> <link rel="stylesheet" href="https://static.squarespace.com/static/ta/5134cbefe4b0c6fb04df8065/7400/assets/logomark/logomark.min.css?37" type="text/css" /> </noscript> ... ... 这让我感到很奇怪,让我谷歌搜索信息以查看是否有某种隐藏的功能/目的用于这种奇怪的HTML,但无济于事。将<script>标记包含在<noscript>元素中是否有某种目的,还是仅是不良HTML的示例?
139
javascript
html
noscript