1.使调试更加容易。那些被忽略或默默失败了的代码错误,会产生错误或抛出异常,因此尽早提醒你代码中的问题,你才能更快地指引到它们的源代码。2.变量在赋值之前必须声明,防止意外的全局变量。如果没有严格模式,将值分配给一个未声明的变量会自动创建该名称的全局变量。这是JavaScript中最常见的错误之一。在严格模式下,这样做的话会抛出错误。3.取消this值的强制转换。如果没有严格模式,引用null或未定义的值到 this 值会自动强制到全局变量。在严格模式下,引用 null或未定义的 this 值会抛出错误。严格模式下,this不会指向window 4.不允许重复的属性名称或参数值。当检测到对象中重复命名的属性,例如:var object = {foo: "bar", foo: "baz"};或检测到函数中重复命名的参数时,例如:function foo(val1, val2, val1){})严格模式会抛出错误,因此捕捉几乎可以肯定是代码中的bug可以避免浪费大量的跟踪时间。5.使 eval() 更安全。在严格模式和非严格模式下, eval() 的行为方式有所不同。最显而易见的是,在严格模式下,变量和声明在 eval() 语句内部的函数不会在包含范围内创建(它们会在非严格模式下的包含范围中被创建,这也是一个常见的问题源)。eval()没有被移除,但它在严格模式下发生了一些变化。最大的改变是:在eval()语句中声明的变量以及函数不会在包含域中创建。例如:(function() { eval("var x = 10;"); // 非严格模式下,x为10 // 严格模式下,x没有声明,抛出一个错误 alert(x); })(); 任意由eval()创建的变量或函数仍呆在eval()里。然而,你可以通过从eval()中返回一个值的方式实现值的传递:(function() { var result = eval("var x = 10, y = 20; x + y"); // 严格模式与非严格模式下都能正常工作(得到30) alert(result); }()); 6.在 delete 使用无效时抛出错误。 delete 操作符(用于从对象中删除属性)不能用在对象不可配置的属性上。当试图删除一个不可配置的属性时,非严格代码将默默地失败,而严格模式将在这样的情况下抛出异常。7.严格模式去除了with语句8.不能修改arguments ,不能在函数内定义arguments变量 ,不能使用arugment.caller和argument.callee。因此如果你要引用匿名函数,需要对匿名函数命名。
详细解决方案
严格模式(use strict)
热度:97 发布时间:2023-11-14 10:01:41.0
相关解决方案
- 怎么在XHTML 1.0 Strict DTD中实现font元素的功能
- DOCTYPE, HTML跟XHTML, Strict DTD和Transitional DTD, Quirks Mode和Standard Mode
- Strict Standards有关问题,帮忙看下
- PHP报错:Strict Standards: Only variables should be passed by reference in .
- PHP Strict Standards异常
- PHP Strict Standards有关问题
- JavaScript语法支持严厉模式:use strict”
- 是时分使用JavaScript严谨模式(Strict Mode)提升团队开发效率 In JavaScript(转)
- 是时分使用JavaScript严谨模式(Strict Mode)提升团队开发效率
- 导入项目报错: The matching wildcard is strict, but no declaration can,该如何处理
- strict servlet API: cannot call getWriter() after getOutputStream(),该如何处理
- Strict Standards有关问题,帮忙看下
- PHP报错:Strict Standards: Only variables should be passed by reference in .
- PHP Strict Standards有关问题
- Python标准库:内置函数str(object='') str(object=b'' encoding='utf-8' errors='strict')
- RSA host key for chdp03 has changed and you have requested strict checking.
- JavaScript严格模式(use strict)
- 严格模式(use strict)
- 【linux报错解决】ECDSA host key for X.X.X.X has changed and you have requested strict checking
- 安装ECSHOP错误,Strict Standards: Only variables should be passed by reference
- Percona XtraDB Cluster Strict Mode(PXC 5.7)
- Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching wildcard is strict,
- JS中的“use strict” 严格模式
- warning: dereferencing type-punned pointer will break strict-aliasing rules
- Strict aliasing rule
- CentOS7.5:ECDSA host key “ip地址“ for has changed and you have requested strict checking
- 数组,重载和多态,作用域,use strict,Typeof,=== 和 == 和 undefined,匿名函数,宿主对象和原生,变量提升,Attribute和property
- 在vue中导入mui.js时报错‘caller‘, ‘callee‘, and ‘arguments‘ properties may not be accessed on strict mode