Skip to content

Instantly share code, notes, and snippets.

@ibeeger
Created April 28, 2018 08:29
Show Gist options
  • Save ibeeger/57736b7c9a1454f542327e5245bd7383 to your computer and use it in GitHub Desktop.
Save ibeeger/57736b7c9a1454f542327e5245bd7383 to your computer and use it in GitHub Desktop.
webworker 注意事项

###webworker 注意事项 在worker线程中,可以获得下列对象

  1. navigator对象
    
  2. location对象,只读
    
  3. XMLHttpRequest对象
    
  4. setTimeout/setInterval方法
    
  5. Application Cache
    
  6. 通过importScripts()方法加载其他脚本
    
  7. 创建新的Web Worker
    

worker线程不能获得下列对象

  1. DOM对象
    
  2. window对象
    
  3. document对象
    
  4. parent对象
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment