HTML Dog
跳至导航

HTML 标签:noscript

仅在不支持脚本或禁用脚本时启用的部分。

如果在 <head> 元素中使用,noscript 应该只包含 <link>、<style> 和 <meta> 元素。

可选属性

全局属性

示例


<!DOCTYPE html>

<html lang="en">

<head>
    <script src="fancyFancy.js"></script>
    <noscript>
        <link href="aHaHaHaHaHaHaEvilLaugh.css" rel="stylesheet">
    </noscript>
</head>

<body>

<p>Hi. You look nice.</p>

<noscript>
    <p>Ha! Lies! You do not look nice.</p>
    <p>We are <strong>alien Mars aliens from Mars</strong>.</p>
    <p>We come to your planet to destroy you.</p>
    <p>We will destroy you by means of static HTML.</p>
    <p>You will be distracted by fancy fancy JavaScript.</p>
    <p>While you are distracted by fancy fancy JavaScript we will destroy you.</p>
    <p>Aaaaaaaaahahahahahahaha!</p>
</noscript>

</body>

</html>