脚本兼容性 ‹noscript›

Exisi 2020-06-01 12:54:22
Categories: Tags:

 

 

实例

<!DOCTYPE html>

<html lang="en">

<head>

<title>网页的标题</title>

 

<script>

document.write("<h1>Hello World!</h1>");

</script>

</head>

 

<body>

<noscript>Sorry, your browser does not support JavaScript!</noscript>

<h1>不支持 JavaScript 的浏览器将显示 noscript 元素中的文本</h1>

</body>

 

</html>

 

 

来自 <https://www.w3school.com.cn/tags/tag_noscript.asp>