将五行Mootools转换为jQuery

时间:2010-08-17 00:33:22

标签: jquery mootools

有人可以帮我解决这个问题吗?我正在使用jquery-1.4.2。

http://jsfiddle.net/Ymkpb/

非常感谢你!

编辑 - 添加原件,以便以后更有用:

$$('.clickables').each(function(clickable) {
    var list = clickable.getElements('li');

    list.addEvent('click', function() {
        var link = this.getElement('a');
        if(this.getFirst('a')) {
            window.location = link
        }
    });
});​

1 个答案:

答案 0 :(得分:2)

在jQuery中看起来像这样:

$('.clickables li').click(function() {
  window.location = $(this).children('a').attr('href');
});​

You can give it a try here