
javascript
kinghoo_hash
create your own
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jsplumb综合记录
var firstInstance = jsPlumb.getInstance();firstInstance.importDefaults({ Connector : [ "Bezier", { curviness: 150 } ], Anchors : [ "TopCenter", "BottomCenter" ]});firstInstance.connect(...原创 2016-05-11 17:49:43 · 390 阅读 · 0 评论 -
prototype constructor __proto__释疑
经典例子分析 function Person(name) { this.name = name; }; Person.prototype.getName = function() { return this.name; }; /* 以下语句的实际运行过程是: 第一步,建立一个新对象(叫p...原创 2016-01-25 17:21:06 · 154 阅读 · 0 评论