-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
javascript 高级程序设计 8-9 #16
Comments
window
窗口关系及其框架:
窗口位置
窗口大小
导航和打开窗口
间歇调用和超时调用js 是 单线程、非阻塞的语言
所有任务分为同步任务和异步任务,同步任务和异步任务在不同的执行环境,同步任务进入主线程,异步任务进入任务队列,任务队列中又包括宏任务队列和微任务队列,主线程内的任务执行完毕为空,会去任务队列中读取对应的任务(先微任务,再读取宏任务),推入到主线程去执行。
系统对话框
|
location
属性名
方法
|
history 对象
|
客户端检测第9章好无聊,我都没有学到什么 能力检测在实际开发中,应该将能力检测作为确定下一步解决方案的依据,而不是用它来 判断用户使用的是什么浏览器。 怪癖检测
第9章讲得真的是~~~云里雾里得 |
BOM: 在 Web 中使用 javascript的核心。
The text was updated successfully, but these errors were encountered: