下記コードで画像の日の項目にはtdが追加できるのですが
曜日に対してtdが追加できません。
どのように修正すればよろしいでしょうか。
html
1<table id="table"> 2 <thead id="thead"> 3 <tr><th>日</th><th>曜日</th></tr> 4 5 </thead> 6 </table>
js
1var today =new Date(); 2 today.setDate(today.getDate()); 3 var yyyy =today.getFullYear(); 4 var mm=('0'+(today.getMonth()+1)).slice(-2); 5 var date =new Date(yyyy,mm,0); 6 //月の日数 7 var lastDay =date.getDate(); 8 9 const tr=document.createElement('tr'); 10 const td=document.createElement('td'); 11 12 for(let i=1;i<=lastDay;i++){ 13 $('#table').append(tr); 14 $('#table').find('tr:last').append(td); 15 $('#table').find('tr:last').append(td); 16 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/02/19 02:58