解决方法
$$
可以通过css选择器检索元素,包括通过
period notation的类.
$$('.myClass'); // array with all elements that have class "myClass"
为了回答你的问题,Event.observe是观察的“静态”版本(用于所有意图和目的).作为一个方便的Prototype automagically makes .observe
available off of all DOM elements(使用$或$$获取):
例子:
// get one item by id with $and attach an event listener: $('myId').observe(eventName,handler); // get many items by class with $$and attach an event listener: $$('.myClass').each(function(element) { element.observe(eventName,handler); }); // or shorter: $$('.myClass').invoke('observe',handler);