配列の中身を取り出そうとしたら、なぜかundefinedになってしまいます。なぜでしょうか?
私の考えでは、1番最初にclass="costs"が書かれている値の80,000がcostに入って表示されると思ってました。
HTMl
1<div class="container"> 2 <button type="button" class="buttons">家賃<br> 3 <span class="costs">80,000</span>円 4 </button> 5 <button type="button" class="buttons">光熱費<br> 6 <span class="costs">5,000</span>円 7 </button> 8 <button type="button" class="buttons">水道代<br> 9 <span class="costs">5,000</span>円 10 </button> 11 <button type="button" class="buttons">通信費<br> 12 <span class="costs">5,000</span>円 13 </button> 14 <button type="button" class="buttons">食費<br> 15 <span class="costs">40,000</span>円 16 </button> 17 <button type="button" class="buttons">音楽<br> 18 <span class="costs">1,000</span>円 19 </button> 20 <button type="button" class="buttons">動画<br> 21 <span class="costs">2,000</span>円 22 </button> 23 <button type="button" class="buttons">Office関連<br> 24 <span class="costs">1,000</span>円 25 </button> 26 </div>
JavaScript
1let costs = document.getElementsByClassName('costs'); 2let cost = costs.innerHTML; 3console.log(cost);
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/23 03:01