有没有办法检查是否强制执行严格模式?

是否有无论如何都要检查是否严格模式’使用严格’是强制的,我们希望执行不同的代码为严格模式和其他代码为非严格模式。 寻找类似 isStrictMode();//boolean的功能

20555 次浏览

Yep, this is 'undefined' within a global method when you are in strict mode.

function isStrictMode() {
return (typeof this == 'undefined');
}

The fact that this inside a function called in the global context will not point to the global object can be used to detect strict mode:

var isStrict = (function() { return !this; })();

Demo:

> echo '"use strict"; var isStrict = (function() { return !this; })(); console.log(isStrict);' | node
true
> echo 'var isStrict = (function() { return !this; })(); console.log(isStrict);' | node
false
function isStrictMode() {
try{var o={p:1,p:2};}catch(E){return true;}
return false;
}

Looks like you already got an answer. But I already wrote some code. So here

I prefer something that doesn't use exceptions and works in any context, not only global one:

var mode = (eval("var __temp = null"), (typeof __temp === "undefined")) ?
"strict":
"non-strict";

It uses the fact the in strict mode eval doesn't introduce a new variable into the outer context.

More elegant way: if "this" is object, convert it to true

"use strict"


var strict = ( function () { return !!!this } ) ()


if ( strict ) {
console.log ( "strict mode enabled, strict is " + strict )
} else {
console.log ( "strict mode not defined, strict is " + strict )
}

Another solution can take advantage of the fact that in strict mode, variables declared in eval are not exposed on the outer scope

function isStrict() {
var x=true;
eval("var x=false");
return x;
}

Warning + universal solution

Many answers here declare a function to check for strict mode, but such a function will tell you nothing about the scope it was called from, only the scope in which it was declared!

function isStrict() { return !this; };


function test(){
'use strict';
console.log(isStrict()); // false
}

Same with cross-script-tag calls.

So whenever you need to check for strict mode, you need to write the entire check in that scope:

var isStrict = true;
eval("var isStrict = false");

Unlike the most upvoted answer, this check by Yaron works not only in the global scope.