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');

你可能感兴趣的:(js)