四种动态执行JS的方法

43 阅读1分钟

image.png image.png

对比:

方法执行时机作用域
eval同步当前作用域
setTimeout异步全局作用域
script同步全局作用域
Function同步全局作用域