2007-09-26

prototype手记 $

关键字: prototype
$::Utility Methods

---------------------------------------------------------------------------

$(id | element) -> HTMLElement

$((id | element)...) -> [HTMLElement...]

If provided with a string, returns the element in the document with matching ID; otherwise returns the passed element. Takes in an arbitrary number of arguments. All elements returned by the function are extended with Prototype DOM extensions.

---------------------------------------------------------------------------------------

如果提供一个字符串给$()函数,例如 $(“div1”) 返回 id div1的对象。

如果传递的是一个对象。那么返回这个元素. $(obj) à obj

如果传递一系列的id或者对象参数,所有的对象都会被返回,并以数组的形式。divs=$('div1','div2');

 

不存在的ID返回null

如果传入的为多个id或者对象,如果遇到null对象,执行到遇到null为止将不再继续

 

如果页面包含2id是相同的。返回第一个id符合的对象

 

$()函数返回的是Element对象。所以你可以使用Element.extend后的方法。例如可以使用$('itemId').hide();类似Element.hide('itemId');

 

当使用数组迭代器['item1''item2''item3'].each(Element.hide);执行某些操作时

 

$()函数可以让代码更优雅

 

$('item1''item2''item3').invoke('hide');

评论
wutao8818 2007-09-27
引用
zzz.....
wutao8818 2007-09-27
发表评论

您还没有登录,请登录后发表评论

wutao8818
搜索本博客
我的相册
B72616b1-874a-316f-9919-fa398e490c9f-thumb
safari
共 8 张
最近加入圈子
存档
最新评论