我正在尝试将附加到DOM的img切换。 URL通过循环中的数组附加。
$('.bonesBtn').on('click', function() {
$(this).data('clicked', true);
var bonesBtnPress = $(this).attr('id');
if ($('#'+ bonesBtnPress).data('clicked')){
console.log('finding');
$('#imgHumerus').toggle();
}