gpt4 book ai didi

JavaScript - : var DndUpload = function (inputElem){}; 的含义

转载 作者:行者123 更新时间:2023-11-28 16:12:51 26 4
gpt4 key购买 nike

请问可以解释一下吗:

下面的代码代表什么?它会创建 DndUpload 对象吗?或者,它是否创建了 DndUpload() 函数?我怀念的是 JavaScript 对象创建过程中通常出现的语句 new 。我很困惑,请问可以解释一下吗?

var DndUpload = function (inputElem)
{
this.input = inputElem;
this.dropZone = null;
this.isDragging = false;
this.init();
};

据我所知,这是在 Javascript 中创建对象的方法:

var myObject = new function()
{
};

如果您有任何带有解释的链接,那将会有所帮助。谢谢。

最佳答案

这是一种更糟糕的写法:

function DndUpload(inputElem)
{
this.input = inputElem;
this.dropZone = null;
this.isDragging = false;
this.init();
}

这是一个function declaration 。它不会创建 DndUpload 的实例。从技术上讲,它确实创建了一个对象 - 它的名称是DndUploadit is an instance of Function 。创建此“类”的实例:

var instance = new DndUpload(document.getElementById('someInputId'));

关于JavaScript - : var DndUpload = function (inputElem){}; 的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12358898/

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