javascript
文章平均质量分 66
小万IT
这个作者很懒,什么都没留下…
展开
-
javascript 类式继承
1. function Person(name){ this.name=name; } Person.prototype.getName = function(){ return this.name; } function Author(name,books){ Person.call(this,name); this.books = books; }原创 2014-10-20 14:20:11 · 311 阅读 · 0 评论 -
js 关于双击会触发两次单击的解决方法
1.双击只触发一次单击的方法原创 2014-11-22 13:48:34 · 1830 阅读 · 1 评论 -
javascript 原型继承精华小例子
function clone(object) { function F() {} F.prototype = object; return new F; } var CompoundObject = { string1: 'default value', childObject: { bool: true, num: 10 } } var compoundO原创 2014-10-22 10:50:18 · 344 阅读 · 0 评论