gpt4 book ai didi

javascript - 为什么 `this`在这里的构造函数中总是 `Window`对象呢?

转载 作者:行者123 更新时间:2023-11-30 08:04:59 25 4
gpt4 key购买 nike

我有这个代码:

(function() {

function App(elements, options) {

if (!this instanceof App) return new App(elements, options);

var that = this;

return this;

}

window.App = App;

})();

App(document.querySelectorAll('.Slider-slide'), {
interval: 5000
});

我的问题是,它从不创建 App 的新实例,因此,this 代码的更下方始终是 Window 对象,知道为什么吗??

最佳答案

你的 if 条件是问题所在:

if (!this instanceof App)

应该是:

if (!(this instanceof App))

看看https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Operator_Precedence#Table

关于javascript - 为什么 `this`在这里的构造函数中总是 `Window`对象呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19479802/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com