28. October 2014
xhinker
SqlServer
A table named "HistoryTable" stored duplicated history records: ThreadID Date Other columns 111-111 2014-10-27 ...
[More]
16. October 2014
xhinker
Web
今天在StackOverflow 上看了 一篇讨论页面加载顺序的文章 http://stackoverflow.com/questions/1795438/load-and-execution-sequence-of-a-web-page 1. html 页面元素下载到本地(还没有解析) 2. 浏览器的html 解析器开始解析页面,如果是外置资源则顺序加载并解析(参考下面的例子) 鉴于解析器是完全顺序并单线程执行的,所以页面里内置的 javascript 代码最好写在html 元素的后面而不是头部。 原文里有个例子可作为常考。 <html> <he...
[More]