noscript

noscript显示有两种情况

浏览器不支持脚本;

浏览器支持脚本,但是脚本被禁用。

 1 <html>
 2 <head>
 3 <title>Example HTML Page</title>
 4 <script type="text/javascript" defer="defer" src="example1.js"></script>
 5 <script type="text/javascript" defer="defer" src="example2.js"></script>
 6 </head>
 7 <body>
 8 <noscript>
 9 <p> 本页面需要浏览器支持(启用)JavaScript 。
10 </noscript>
11 </body>
12 </html>
原文地址:https://www.cnblogs.com/1032473245jing/p/8081242.html