《基于Prototype实现对象级别Observer模式》的相关内容
相关博客
prototype-1.4.0源码解读
/* Prototype JavaScript framework, version 1.4.0
* (c) 2005 Sam Stephenson <sam@conio.net>
*
* Prototype is freely distributable under the terms of an MIT-style license.
*&nbs ...
by p_x1984 2008-05-26 浏览 (156) 回复 (0) 关键字:
【Prototype 1.4.0】源码解读(一)
/* Prototype JavaScript framework, version 1.4.0
* (c) 2005 Sam Stephenson <sam@conio.net>
*
* Prototype is freely distributable under the terms of an MIT-style license.
* For detail ...
by sunxboy 2008-08-06 浏览 (121) 回复 (0) 关键字: prototype
我对prototype1.4.0的注解
看到网上和javaeye有对prototype的源码注解,不过是以前的
自己看了一下prototype1.4.0的就自己作了一下注解,不过里面还是有不明白的地方,还的请大家多指教
/* Prototype JavaScript framework, version 1.4.0
* (c) 2005 Sam Stephenson <sam@conio.net>
*
* Pro ...
by likunkun 2006-12-22 浏览 (4163) 回复 (5) 关键字:
Prototype的学习笔记
转自:http://javautils.javaeye.com/blog/162660
一般JS类都如下方式写
Java代码
var MyClass = Class.create();
MyClass.prototype = {
in ...
by wsy2801 2008-05-23 浏览 (145) 回复 (0) 关键字: prototype的学习笔记
Prototype的学习笔记
一般JS类都如下方式写
var MyClass = Class.create();
MyClass.prototype = {
initialize : function(){
},
method_1: function(){
......
},
method_2: function ...
by qichunren 2008-02-16 浏览 (289) 回复 (0) 关键字:

