ラジオボタンを選択すると、選択した画像のZ-インデックスがすぐに最高値に変更されるようにしています。私はお互いの上に積み重ねた6枚の画像を持っています。各ラジオボタンは、画像の1つに関連付けられています。視聴者は、関連付けられたラジオボタンが選択されると必ず画像を見る必要があります。各ラジオボタンの「名前」は「選択」です。私はこれを試してみましたが、それは働いていない:ラジオボタン:zインデックスを変更する
`
<div class="radio"><label><input type="radio" value="2" name="selection">Bouquet with Chocolate</label></div>
<div class="radio"><label><input type="radio" value="3" name="selection">with Clear Vase</label></div>
<div class="radio"><label><input type="radio" value="4" name="selection">with Clear Vase & Chocolate</label></div>
<div class="radio"><label><input type="radio" value="5" name="selection">with Red Vase</label></div>
<div class="radio"><label><input type="radio" value="6" name="selection">with Red Vase & Chocolate</label></div>
$(document).ready(function(){
$('input:[type=radio][name=selection]').change(function(){
if (this.value == '1'){
document.getElementById('image_1').style.zIndex = "2";
}
else if (this.value == '2'){
document.getElementById('image_2').style.zIndex = "2";
}
else if (this.value == '3'){
document.getElementById('image_3').style.zIndex = "2";
}
else if (this.value == '4'){
document.getElementById('image_4').style.zIndex = "2";
}
else if (this.value == '5'){
document.getElementById('image_5').style.zIndex = "2";
}
else (this.value == '6'){
document.getElementById('image_6').style.zIndex = "2";
}
});
});
`
それは働きました!ありがとう –