gpt4 book ai didi

jquery - 将五行 Mootools 转换为 jQuery

转载 作者:行者123 更新时间:2023-12-01 04:29:55 27 4
gpt4 key购买 nike

有人可以帮我解决这个问题吗?我正在使用 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
}
});
});​

最佳答案

在 jQuery 中它看起来像这样:

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

You can give it a try here

关于jquery - 将五行 Mootools 转换为 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3498477/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com