我有一些具有相同 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();
});