摘要:
Warriors of the Visual Studio, Assemble!If you've recently purchasedAssembly Language for Intel-Based Computers, 5th edition, you probably want to get the software set up so you can start working. This tutorial should make the process easier. If you're in a hurry to get started, you only nee 阅读全文
posted @ 2011-07-04 13:39
狼の禅
阅读(1195)
评论(1)
推荐(3)
摘要:
随着每个新版本的 Windows Internet Explorer 的发布,对级联样式表 (CSS) 标准的支持也在稳步提高。 Internet Explorer 6 是第一个完全符合 CSS 级别 1 规范的 Internet Explorer 版本。 Windows Internet Explorer 8 完全符合 CSS 级别 2 修订 1 (CSS 2.1) 规范,并支持某些 CSS 级别 3 (CSS 3) 的功能。如果您的网站面向的浏览器包括早期版本的 Internet Explorer,则您需要知道这些版本符合的 CSS 级别规范。 本文简述了各个最近的 Internet Ex 阅读全文
posted @ 2011-07-04 13:36
狼の禅
阅读(2646)
评论(3)
推荐(3)
摘要:
变量作用域是程序中定义这个变量的区域。先贴一段代码,如果读者对代码的输出并不感到困惑就不用往下面读了。/* 代码1 */var scope = "global ";function checkScope() { var scope = "local "; function childCheck() { var scope = "childLocal "; document.write(scope); } function childUndefined() { document.write(scope); var scope; } fu 阅读全文
posted @ 2011-07-04 13:04
狼の禅
阅读(1987)
评论(9)
推荐(5)