(0, eval)("this")

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(0, eval)("this")相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
var name = "The window";
var object1 = {
name: "My object",
getNameFunc: function(){
var that = (0,eval)("this"); //返回"the window
// var that = this; //返回"My object"
return function(){
// that = this;
return that.name;
};
}
};
alert(object1.getNameFunc()());
</script>
</head>
<body>

</body>
</html>

(0, eval)逗号表达式返回值再调用函数,将引发this值指向全局对象。所以that = (0, eval)("this"),表面上结果为that = this,和直接that = this的形式一样,但是此时的this并非指向object1,而是指向window

以上是关于(0, eval)("this")的主要内容,如果未能解决你的问题,请参考以下文章

eval()解析object出现Unexpected identifier异常

[Vue 警告]:渲染错误:“TypeError: undefined is not an object (evalating 'this.$store.state')”

我用Jquery 的ajax里边不能识别$(this)啦???代码如下:

Eval的格式,主要看大括号的格式,其他不用那样写

eval(data)和eval("("+data+")")的区别

Dash 和 C: eval "$(<cmdfile)" 和 system("eval \"\$(<cmdfile)\"") 给