IT業界の技術をメモ・情報公開できる

jqueryで日時の取得

登録日:2024-10-25   
JS

new Date().getFullYear();


new Date().getMonth() + 1;


new Date().getDate();

曜日
new Date().getDay();
weekday = ["日","月","火","水","木","金","土"];
weekday[num];


new Date().getHours();


new Date().getMinutes();


new Date().getSeconds();

一覧に戻る