aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/strict_mode/index.html
blob: 625acc4b8c121b1fdc3233b7eadb9a6293565385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: Strict mode(严格模式)
slug: Glossary/strict_mode
tags:
  - JavaScript
  - 参考
  - 术语
translation_of: Glossary/strict_mode
---
<p>JavaScript 的<strong>严格模式</strong>是使用受限制的 JavaScript 的一种方式,从而隐式地退出“<a href="/zh-CN/docs/Glossary/Sloppy_mode">草率模式</a>”。严格模式不仅仅是一个子集:这种模式有意地与普通情形下的代码有所区别。</p>

<p>通过在脚本文件/函数开头添加 <code>"use strict";</code> 声明,即可启用严格模式。</p>

<h2 id="另请参见">另请参见</h2>

<ul>
 <li><a href="/zh-CN/docs/Web/JavaScript/Reference/Strict_mode">严格模式</a></li>
 <li><a href="/zh-CN/docs/Web/JavaScript/Reference/Strict_mode/Transitioning_to_strict_mode">过渡到严格模式</a></li>
</ul>