作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
来自documentation ,可以使用 $.Deferred()
或 new $.Deferred()
创建 jQuery.Deferred
构造函数的实例。 new
关键字是可选的。
如何在构造函数中实现类似的功能?
最佳答案
如果您的函数没有作为构造函数调用,则 this
将不会是它的实例。因此,您可以使用它来检测 new
-less 调用:
function MyObject(arg1, arg2, arg3) {
if(!(this instanceof MyObject)) {
return new MyObject(arg1, arg2, arg3);
}
/* Normal constructor code... */
}
关于javascript - jQuery.Deferred 是如何使用可选的 new 关键字实现的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22332235/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!