| 删除 API 功能 | 替代功能 |
| attachEvent | addEventListener |
| window.execScript | eval |
| window.doScroll | window.scrollLeft、window.scrollTop |
| document.all | document.getElementById |
| document.fileSize、img.fileSize | 使用 XMLHttpRequest 可提取源 |
| script.onreadystatechange 和 script.readyState | script.onload |
| document.selection | window.getSelection |
| document.createStyleSheet | document.createElement("style") |
| style.styleSheet | style.sheet |
| window.createPopup | 使用 div 或 iframe(zIndex 值很高) |
| 二进制行为 | 变化;使用基于标准的等效,如 canvas、SVG 或 CSS3 动画 |
| 传统数据绑定 | 使用框架提供的数据绑定,如 WinJS |
原文:https://www.cnblogs.com/ruralcraftsman/p/14071852.html