上一页 1 ··· 14 15 16 17 18

2011年7月6日

ECMA262(v5)点滴(一)

摘要: variable statment(变量语句)A variable statement declares variables that are created as defined in 10.5. Variables are initialised to undefined when created. A variable with an Initialiser is assigned the value of its AssignmentExpression when the VariableStatement is executed, not when the variable is c 阅读全文

posted @ 2011-07-06 16:03 argb 阅读(208) 评论(0) 推荐(0) 编辑

2011年1月26日

Linux 汇编器:对比 GAS 和 NASM

摘要: 简介:本文解释两种最流行的 Linux® 汇编器 —— GNU Assembler(GAS)和 Netwide Assembler(NASM) —— 之间一些比较重要的语法差异和语义差异,包括基本语法、变量和内存访问、宏处理、函数和外部例程、堆栈处理以及重复执行代码块的技术方面的差异。详细内容:http://www.ibm.com/developerworks/cn/linux/l-gas-nasm.html 阅读全文

posted @ 2011-01-26 17:08 argb 阅读(391) 评论(0) 推荐(0) 编辑

2010年3月19日

form 的属性名与其内元素的属性值在ie6、7下的bug

摘要: 情况1、<form id='tf' method='get' action=""> <legend>一个bug小测试</legend> <fieldset> <input id='method' name='test' value='method' type='text'/> </fieldset></form&g... 阅读全文

posted @ 2010-03-19 16:22 argb 阅读(224) 评论(0) 推荐(0) 编辑

2010年1月18日

如何对待新新标准、新特性

摘要: 随着各大主流浏览器对新的css特性和html5的全面支持,我们改如何处理IE这个款垃圾浏览器,为了ie浏览器放弃新的特性还是抛弃ie的陈腐与落后大胆前进,无疑ie给前端开发和新特性的应用带来了巨大障碍,随着“渐进增强式开发”为越来越多的人所认识,也许我们是时候革新思想了,难道为不同浏览器使用群体提供相同的用户体验真的是正解吗?错!为不同浏览器用户提供不同的用户体验才是正确的... 阅读全文

posted @ 2010-01-18 10:42 argb 阅读(153) 评论(0) 推荐(0) 编辑

2009年7月7日

javascript 的执行上下文问题

摘要: 下面这段代码var obj={ a:function(){ this.val=true; } }; this 应该指向a 还是指向obj? 为什么?个人测试结果:开始指向a,执行obj.a()后this指向obj。但是不清楚为什么,请高手指教~ alert(obj.a.val); // 结果是undefined,为什么?(明明是a属于obj,this指向a嘛,为什么是undefined?) alert(obj.val); // 结果是undefined,为什么? obj.a(); // 执行后切换执行环境 alert(obj.val); // 结果是true,为什么? alert(obj.a. 阅读全文

posted @ 2009-07-07 23:33 argb 阅读(397) 评论(4) 推荐(0) 编辑

2009年6月18日

网页制作与http协议

摘要: 网页优化与http连接数 阅读全文

posted @ 2009-06-18 17:58 argb 阅读(543) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18

导航