HTMLに6個の画像を横並びに配置し、任意の画像をクリックしたときのsrc値を取得するのに、ループ処理で書くと動かないのはなぜでしょうか?
ちなみに、画像の数分onclick処理を書くと動きます。
HTML
1 document.writeln('<label><img class="thumbnail" id="sm1" src="https://drive.google.com/uc?id=aaa" width="50" height="50"></label>'); 2 document.writeln('<label><img class="thumbnail" id="sm2" src="https://drive.google.com/uc?id=bbb" width="50" height="50"></label>'); 3 document.writeln('<label><img class="thumbnail" id="sm3" src="https://drive.google.com/uc?id=ccc" width="50" height="50"></label>'); 4 document.writeln('<label><img class="thumbnail" id="sm4" src="https://drive.google.com/uc?id=ddd" width="50" height="50"></label>'); 5 document.writeln('<label><img class="thumbnail" id="sm5" src="https://drive.google.com/uc?id=eee" width="50" height="50"></label>'); 6 document.writeln('<label><img class="thumbnail" id="sm6" src="https://drive.google.com/uc?id=fff" width="50" height="50"></label>'); 7
javascript
1 for(var i=1;i<7;i++){ 2 document.getElementById("sm"+i).onclick = function() { 3 values.length = 0; 4 values.push(document.getElementById("sm"+i).getAttribute("src")); 5 }; 6 } 7 // for文だけではうまくsrc値が取得できず、以下画像の数分書かないのでしょうか? 8 document.getElementById("sm1").onclick = function() { 9 values.length = 0; // 配列を空にする 10 values.push(document.getElementById("sm1").getAttribute("src")); 11 }; 12 document.getElementById("sm2").onclick = function() { 13 values.length = 0; 14 values.push(document.getElementById("sm2").getAttribute("src")); 15 }; 16 document.getElementById("sm3").onclick = function() { 17 values.length = 0; 18 values.push(document.getElementById("sm3").getAttribute("src")); 19 }; 20 document.getElementById("sm4").onclick = function() { 21 values.length = 0; 22 values.push(document.getElementById("sm4").getAttribute("src")); 23 }; 24 document.getElementById("sm5").onclick = function() { 25 values.length = 0; 26 values.push(document.getElementById("sm5").getAttribute("src")); 27 }; 28 document.getElementById("sm6").onclick = function() { 29 values.length = 0; 30 values.push(document.getElementById("sm6").getAttribute("src")); 31 }; 32
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/09 07:32
2020/09/09 07:35
2020/09/10 07:40