0

此代码在 Firefox 中返回 true:

('overrideMimeType') in (new XMLHttpRequest())

但是 jslint 给了我这个信息:

第 1 行字符 22 处的问题:意外的 'in'。与 undefined 进行比较,或者改用 hasOwnProperty 方法。

如何根据 jslint 正确编写语句?

我试过了,但它返回 false :

(new XMLHttpRequest()).hasOwnProperty('overrideMimeType')
4

1 回答 1

2

采用:

XMLHttpRequest.prototype.hasOwnProperty('overrideMimeType')
于 2012-04-26T22:47:08.000 回答