prototype库1.6版中的Enumerable的each方法?》的相关内容

prototype源码分析—enumerable

js 代码     var $break    = new Object();   //表示break的对象 可以对比java的exception的使用 var $continue = new Object();& ...
by jianfeng008cn 2007-08-16 浏览 (1390) 回复 (0) 关键字: prototype

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- ...
by zhangljerry 2007-03-01 浏览 (460) 回复 (0) 关键字:

prototype.js解读

/*  * 定义一个全局对象, 属性 Version 在发布的时候会替换为当前版本号  */ var Prototype = {     Version: '1.5.0_rc0',     ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:< ...
by ecchanger 2007-07-29 浏览 (438) 回复 (1) 关键字: prototype.js,解读,注释

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 details, see ...
by p_x1984 2008-05-26 浏览 (88) 回复 (0) 关键字:

Prototype1.5.1.1代码注释(一)

本着学习的目的添加的注释,本人js水平很差,有不对的地方请各位一定多多指教。 /* Prototype JavaScript framework, version 1.5.1.1 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-s ...
by 9esuLuciano 2008-01-28 浏览 (548) 回复 (0) 关键字:

translation!

哪为朋友帮助准确翻一下下面的QA呢 Q: What is an Iterator? A: Some of the collection classes provide traversal of their contents via a java.util.Iterator interface. This interface allows you to walk through a collecti ...
by ASDF1982 2007-10-12 浏览 (555) 回复 (1)

求助:用RamDirectory做缓存时遇到的问题!

我在用lucene做索引的时候,用RamDirectory先缓存100条数据之后一起存入FSDirectory,为什么只能存入10条数据呢? 我用LukeAll观察也只有10条数据,这是为什么呢? 一下是具体代码: public class IndexDocs extends IndexBase{ private final Log logger = LogFactory.getLog(I ...
by baidongli 2008-05-05 浏览 (177) 回复 (0)

我用jsf1.1,commandlink的onclick属性无效,怎么调用我的js函数啊?

UIComponent footer = this.getFacet("footer"); String clientId = this.getClientId(context); if (footer != null) { List cs = footer.getChildren(); for (Iterator iterator = cs.iterator(); i ...
by fourfire 2008-04-11 浏览 (433) 回复 (7)

如何取得tivoli性能监控器中的线程池数据(可以走soap调用系统管理的路线吗?)

大家好,在下单位使用的websphere的版本是5.0.2,现在需要取得tivoli性能监控器中的线程池的并发活动线程数据作为负载均衡算法的一个算子,不知道该如何去做?
by sniper1990 2007-08-20 浏览 (713) 回复 (8)

ArrayList 的 s&a

“注意,此实现不是同步的。如果多个线程同时访问一个 ArrayList 实例,而其中至少一个线程从结构上修改了列表,那么它必须 保持外部同步。(结构上的修改是指任何添加或删除一个或多个元素的操作,或者显式调整底层数组的大小;仅仅设置元素的值不是结构上的修改。)这一般通过对自然封装该列表的对象进行同步操作来完成。如果不存在这样的对象,则应该使用 Collections.synchronizedLis ...
by snowind9 2007-11-20 浏览 (359) 回复 (3)

推荐知识库条目

Comming soon