gpt4 book ai didi

javascript - 在jquery中,触发对具有最高 'rel'属性值的链接的点击

转载 作者:行者123 更新时间:2023-11-29 18:30:23 24 4
gpt4 key购买 nike

我有:

<a rel="9">Link 1</a>
<a rel="6">Link 2</a>
<a rel="3">Link 3</a>
<a rel="21">Link 4</a>

我想在具有最高“rel”值的链接上触发点击。最有效的写法是什么?

最佳答案

试试这个。

var max = 0, index = 0;
$('a[rel]').each(function(i){
if(parseInt($(this).attr('rel'), 10) > max){
max = parseInt($(this).attr('rel'), 10);
index = i;
}
}).eq(index).trigger('click');

Demo

关于javascript - 在jquery中,触发对具有最高 'rel'属性值的链接的点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9102229/

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