$$('.myclass')[0].fade()
原型(和 mootools)中的 $$ 接受任何类型的 css 选择器,如 $$('div#joe')
或 $$('a[rel=awesome]')
并返回一个数组。
$ 将只返回一个具有匹配 id 的元素,例如 $('joe');
所以给定这个html:
<div id="joe" class="awesome"></div>
<div id="sally" class="awesome"></div>
$$('.awesome')
将返回一个包含两个 DIV 的数组
$('joe')
并且$$('#joe')
实际上是相同的(尽管后者是一个数组)。
编辑
首先删除您的 onclick 事件并向 rel 属性添加一些信息,如下所示:
<a rel="demo" href="#">Div 1</a><br />
<a rel="demo2" href="#">Div 2</a><br />
<a rel="demo3" href="#">Div 3</a>
然后把它放在head
你的文档的一个脚本标签中。
document.observe("dom:loaded", function() {
// this makes sure the document is loaded and ready to be manipulated
// store your links and demo DIVs in arrays
var links = $$('div.rightcol a');
var demos = $$('.myclass');
// enumerate over the links
links.each(function(link){
// observe the click event of the current link in the loop
link.observe('click',function(event){
event.stop();
// loop the demo DIVs and fade each one
demos.each(function(demo){
demo.fade({ duration: 0.3, from: 1, to: 0 });
});
// figure out which demo to fade in from the links rel attribute
var target = link.readAttribute('rel');
// get the demo target and fade it in
$(target).appear({ delay: 0.35 });
});
});
});
我希望脚本很容易理解。