- 浏览: 13275 次
- 性别:
最近访客 更多访客>>
最新评论
-
jianfeng008cn:
zkj_beyond 写道jquery 出招,prototyp ...
prototype 1.5 RC2 $ 函数的解读 -
blood:
fins 2006-12-14 23:14
我真希望 ...
prototype 1.5 RC2 $ 函数的解读 -
zkj_beyond:
jquery 出招,prototype.js 立马接招。却害苦 ...
prototype 1.5 RC2 $ 函数的解读 -
fins:
我真希望 它的$可以支持 getElementsByName
prototype 1.5 RC2 $ 函数的解读 -
yymoth:
想不到limodou 也喜欢来java社区看看..呵呵.
补发:澄清Python的Open class
文章列表
最近闲的无聊,跟人打赌,看看能不能在一天时间内里面把prototype 1.5的 $函数读懂,赚顿饭吃吃,下面把理解贴出来,让大家看看算不算读懂了。
首先把想关代码贴一下。
function $(element) {
if (arguments.length > 1) {
for (var i = 0, elements = [], length = arguments.length; i < length; i++)
elements.push($(arguments[i]));
return elements;
}
if ( ...