0
如何使用mootools創建三個選項卡?使用mootools創建選項卡
如何使用mootools創建三個選項卡?使用mootools創建選項卡
function mootab(_nav, _body) {
var tabs = $(_nav).getElements('a');
var containers = _body.getElements('li');
tabs.each(function(tab, index) {
tab.addEvents({
click: function(event) {
event.stop();
tabs.removeClass('active');
tabs[index].addClass('active');
containers.removeClass('active');
containers[index].addClass('active');
}
});
});
}
mootab($('tabs-nav'),$('tabs-body'))
下面的例子是多個可重複使用:Fiddle
涼爽。問題是有點模糊,但:)所有的OP所要做的是做一個谷歌搜索... – 2011-03-14 10:06:31
有些人不知道如何使用谷歌,顯然:-) – 2011-03-14 10:33:55