プルダウンに今日と明日の日付けを設定する(覚書き)

ホテルの予約サイト用にチェックイン、アウトの日付をjavascriptで取得しプルダウンで表示させる。

var today = new Date();
var ciyear = today.getFullYear();
var cimonth = today.getMonth() + 1;
var ciday = today.getDate();
var nextday = today.setDate(today.getDate() + 1);
var coyear = today.getFullYear();
var comonth = today.getMonth() + 1;
var coday = today.getDate();

以上。

Thanks for installing the Bottom of every post plugin by Corey Salzano. Contact me if you need custom WordPress plugins or website design.

コメントを残す