随笔分类 -  读书笔记

摘要:声明顺序PositioningBox modelTypographicVisual.declaration-order { /* Positioning */ position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-ind... 阅读全文
posted @ 2015-07-30 17:24 WFE-Hank 阅读(172) 评论(0) 推荐(0)
摘要:关键部分用粗黑体。function goodbye(e) { if(!e) e = window.event; //e.cancelBubble is supported by IE - this will kill the bubbling process. e.cancelBubble = tr... 阅读全文
posted @ 2015-07-30 17:01 WFE-Hank 阅读(176) 评论(0) 推荐(0)
摘要:The properties on thestyleobject are only the styles applied directly to the element (e.g., via astyleattribute or in code). So.style.marginTopwill on... 阅读全文
posted @ 2015-07-30 14:49 WFE-Hank 阅读(194) 评论(0) 推荐(0)
摘要:REST其实是一种组织Web服务的架构,而并不是我们想象的那样是实现Web服务的一种新的技术,更没有要求一定要使用HTTP。其目标是为了创建具有良好扩展性的分布式系统。作为一种架构,其提出了一系列架构级约束。这些约束有:使用客户/服务器模型。客户和服务器之间通过一个统一的接口来互相通讯。层次化的系统... 阅读全文
posted @ 2015-07-29 17:01 WFE-Hank 阅读(193) 评论(0) 推荐(0)
摘要:浏览器工作原理,原文地址:http://taligarsiel.com/Projects/howbrowserswork1.htm整个读了一遍,花了几个小时。简单总结下,就是下面两幅图。一是介绍了浏览器的组成,一个介绍了页面加载的过程。下面是一些摘抄的知识点:Webkituses two well ... 阅读全文
posted @ 2015-07-27 10:28 WFE-Hank 阅读(241) 评论(0) 推荐(0)