同じ CSS クラスを持つ要素がいくつかあります
そのうちの 1 つの 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();
});