http://diveintohtml5.org/storage.html
http://dev.w3.org/html5/
有时候需要获取到flash对象,因此给object添加了id,给embed添加了name,两者的值刚好相同。此时如果使用window[name]来获取flash对象,各浏览器的表现就不一致了:在Opera/Safar/Chrome获取到的是一个集合HTMLCollection,弹出其length是2,在Opera/Safari/chrome中分别取出第1,2个元素分别是object,embed元素。准确的获取flash对象可以通过以下方式:
function getFlashObj(name){
return document[name] || window[name];
}
------- 源 http://www.javaeye.com/topic/684672
评:SWFObject 值得广泛应用和尝试
来源: http://www.brunildo.org/test/va_lineheight.html
来源:http://www.brunildo.org/test/inline-block.html
HTML5 Web Sockets与代理服务器交互
http://www.infoq.com/cn/articles/Web-Sockets-Proxy-Servers
WEB数据交互的艺术
http://www.infoq.com/cn/presentations/huangfangrong-web-data-interact