現在の月を取得して指定した箇所で表示させたいのですが、要素がnullになり、取得できません。
何が問題なのかもわからないため、アドバイスをお願いします。
let element = document.querySelector(".month_fixed_cost");の部分は,
let element = document.querySelector("center.month_fixed_cost");や
let element = document.querySelector("div p");なども試しましたが、結果はnullでした。
HTMl
1<body> 2 <script src="../js/index.js"></script> 3 <div class="wrapper"> 4 <h1 class="center title">固定費管理アプリ</h1> 5 <p class="center month_fixed_cost month">月の固定費</p> 6// 以下省略
JavaScript
1// 現在の月を取得して表示 2function Month() { 3 let today = new Date(); 4 let mm = today.getMonth() + 1; 5 let element = document.querySelector(".month_fixed_cost"); 6 console.log(element); 7} 8Month();
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/17 12:11