/ *
是否可以将第一块变成第二块?我已经用requestAnimationFrame做过类似的事情,但是由于点的原因,它似乎在这里不起作用。
* /
////////////////////////////////////////////////////////////////////////////////////////
window.performance = window.performance || {};
window.performance.now = (function()
{
return window.performance.now ||
window.performance.webkitNow ||
window.performance.msNow ||
window.performance.mozNow ||
window.performance.oNow || function() { return new Date().getTime(); };
})();
var PeRfOrMaNcE = window.performance;
console.log(PeRfOrMaNcE.now());
////////////////////////////////////////////////////////////////////////////////////////
var PeRfOrMaNcE = (function()
{
return window.performance.now ||
window.performance.webkitNow ||
window.performance.msNow ||
window.performance.mozNow ||
window.performance.oNow || function() { return new Date().getTime(); };
})();
console.log(PeRfOrMaNcE());
最佳答案
至少在Chrome中,now()
功能需要该this === window.performance
。
因此,您必须使用.call
或。bind
来正确调用它。
尽管似乎仍然需要window.performance
存在,但即使您在第一次尝试代码时将其初始化为空对象,这似乎仍然可行:
var PeRfOrMaNcE = (function()
{
return window.performance.now ||
window.performance.webkitNow ||
window.performance.msNow ||
window.performance.mozNow ||
window.performance.oNow || function() { return new Date().getTime(); };
})().bind(window.performance);
或者,当
.bind
不存在时,避免使用window.performance
调用:var PeRfOrMaNcE = (function()
{
var wp = window.performance;
var now = wp && (wp.now || wp.webkitNow || wp.msNow || wp.mozNow || wp.oNow);
return now && now.bind(wp) || function() {
return new Date().getTime();
}
})();
关于javascript - 如何重命名 native 窗口函数,以便可以删除两行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19549305/