标签: javascript
当我在Google Chrome的开发者工具中输入setInterval时,它会将以下内容写入控制台
setInterval
function setInterval() { [native code] }
如何查找[native code]中应包含的代码?
[native code]
答案 0 :(得分:0)
setInterval()由渲染引擎实现。
setInterval()
在Webkit / Blink中,它是对DOMWindow实例的调用。
最有趣的位在DOMTimer.cpp