layout | title | date | modifiedOn |
---|---|---|---|
homepage |
JavaScript 标准参考教程(alpha) |
2012-11-18 |
2014-03-17 |
- 浏览器的JavaScript引擎
- window对象
- History对象
- Ajax
- 同域限制与window.postMessage方法
- Web Storage:浏览器端数据储存机制
- IndexedDB:浏览器端数据库
- WebSocket(基本完成)
- WebRTC
- performance对象:高精度时间戳
- 移动设备API
- Canvas
- SVG图像
- 文件与二进制数据的操作
- Web Worker
- 服务器端发送事件
- Page Visiblity
- FullScreen
- Web Speech
- requestAnimationFrame
- 浏览器控制台(console对象)
- PhantomJS
- Bower:客户端库管理工具
- Grunt:任务自动管理工具
- Browserify:浏览器加载Node.js模块
- RequireJS和AMD规范
- Source map
{% comment %}
{% if site.posts.size != 0 %}
{% for post in site.posts %}
- {{ post.date | date_to_string }} [{{ post.title }}]({{ post.url }}) {% endfor %}
{% endif %}
{% if site.pages.size != 0 %}
{% for page in site.pages limit:5 %} {% if page.url !='/index.html' %}
- [{{ page.title }}]( {{ page.url }})({{ page.date }}) {% endif %} {% endfor %}
{% endif %}
{% endcomment %}