gpt4 book ai didi

jquery - 通过 css 类检索一个元素的 id

转载 作者:行者123 更新时间:2023-12-01 06:50:25 25 4
gpt4 key购买 nike

我有一些具有相同 CSS 类的元素

我想知道如何找回其中一个的ID;例如该类的第一个

这是我当前的代码,但它不起作用

$('.imageofarticle').mousemove(function(){
var a = $(this).attr('id');
var tableau = a.split(":");
alert("get the first : "+$('.showmovingEdit').[0].attr('id'));
// $('.showmovingEdit')[tableau[1]].show();
});

最佳答案

您的代码在语法上是错误的,要选择第一个元素,您可以使用 first 方法:

// Return the first element in jQuery collection
$('.showmovingEdit').first().attr('id');

要选择其他元素,可以使用eq方法:

// Return an element based on it's index in jQuery collection
$('.showmovingEdit').eq(index).attr('id');

请注意,当使用[index]时(正确),它返回一个没有attr方法的DOM Element对象,您应该使用 id 属性来代替:

// Select the first DOM element in the set and return it's ID property
var id = $('.showmovingEdit')[0].id;

关于jquery - 通过 css 类检索一个元素的 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15863561/

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