-
阿蒙
https://github.com/nswbmw/N-blog/wiki/_pages2016-07-28 15:16
-
阿蒙
https://github.com/cnodejs/nodeclub/2016-07-28 15:15
-
阿蒙
如果替换了prototype对象,o.prototype = {}; 么,下一步必然是为新的prototype对象加上constructor属性,并将这个属性指回原来的构造函数。 o.prototype.constructor = o;2016-07-26 17:41
-
阿蒙
全局中报错。在函数中 function b (){ var a = "ffff"; function a(){ console.log("gggg"); } console.log(a); a(); } b(); fff; a not a function2016-07-21 20:13
-
阿蒙
git init git commit -m "first commit" git remote add origin git@github.com:dengzhaotai/vlc_play.git git push -u origin master2016-07-20 23:39
-
阿蒙
of + something; for + someone2016-04-23 23:49
-
阿蒙
https://medium.com/2016-03-23 18:28
-
阿蒙
html:5 html:xs ul>li*5 tab2016-03-23 09:51
-
阿蒙
runtimeStyle 运行时的样式!如果与style的属性重叠,将覆盖style的属性! currentStyle 指 style 和 runtimeStyle 的结合! IE下使用curretStyle. FF下使用getComputedStyle2016-02-25 09:36
-
阿蒙
https://github.com/fouber/blog/issues/102016-02-23 16:10
-
阿蒙
我这一生都只忠于自己,我所做的一切选择,都是心甘情愿,自由意志的结果。我从来没有被任何人,任何事物所奴役,挟制,连神办不到!我可以因崇拜,尊重而向他人低头,但绝不因屈从而低头!2016-01-13 21:24
-
阿蒙
晕 改了banner图一个样式导致评论图片变异常。 太坑了 。下班回家调整下。2016-01-12 17:53
-
阿蒙
2016-01-12 16:21
-
阿蒙
圣诞快乐. 又是一个单身狗的圣诞!2015-12-25 15:07
-
阿蒙
实例的继承属性并不是继承至构造函数, 而是继承至构造函数的原型。 构造函数有一个prototype属性指向构造函数的原型。 构造函数的原型有一个 constructor 属性指向构造函数。 实例有一个指向原型对象的指针 。 让原型对象等于构造的实例, 即是原型链。2015-10-28 15:55
-
阿蒙
变量名需要使用英文名词。 方法名使用动词加名词方式 。 命名使用驼峰式 。 构造函数及类首字母大写 。 常量整个单词大写。 局部变量加上 "_" .2015-10-28 15:44
-
阿蒙
函数内部开头用来声明变量 , 之后是函数内部语句 。 if for之类的循环也一样。 在语句与声明变量之间加上空行。2015-10-28 15:43
-
阿蒙
函数内部开头用来声明变量 , 之后是函数内部语句 。 if for之类的循环也一样。 在语句与声明变量之间加上空行。2015-10-28 15:42
-
阿蒙
创建数组及对象尽量使用 对象字面量方式创建。2015-10-28 15:41
-
阿蒙
基本类型使用typeof 来进行if判断。 引用类型使用instanceof 来进行判断。 尽量不要使用 === null 来判断。2015-10-28 15:39