Я пытаюсь получить значение элемента, когда пользователь нажимает на него. Это мой код:
<div id="heroes-selection" class="row dflex justify-content-left">
<figure id="luna" class="heroes-pic border text-danger m-3" value="heroes.luna">
<img class="animated-gif">
</figure>
<figure id="qop" class="heroes-pic border text-danger m-3" value="heroes.qop">
<img class="animated-gif">
</figure>
</div>
Я пытался использовать Jquery $(this)
, и результат получился как undefined
.
$(".heroes-pic").on("click", () => {
player = $(this).attr("value");
console.log(player);
});
Моя цель - получить значение heroes.luna
, когда пользователь нажимает на цифру с id="luna"
. То же самое для id="qop"
, мне нужно получить значение heroes.qop
. Спасибо!