實現效果如下,通過input輸入開始時間和結束時間,並計算出請假天數顯示在網頁中。
1.利用js獲取日期
var date=document.getelementbyid("id名稱").value;
獲取到的日期格式為2019-06-27,通過split函式將日期年月日分割後才能進行計算,
math.ceil函式對計算得到的天數進行上取整。
要將結果動態顯示在頁面上,則為終止時間設定事件,一旦終止時間文字框發生改變則onchange執行函式,將結果動態顯示在請假天數文字框中,days為請假天數文字框的id名稱。
js中獲取日期格式
1 varmydate new date 2document.write mydate.getyear tostring 獲取當前年份 2位 3document.write mydate.getfullyear tostring 獲取完整的年份 4位,1970 4document.write myd...
js中獲取日期格式
1 varmydate new date 2document.write mydate.getyear tostring 獲取當前年份 2位 3document.write mydate.getfullyear tostring 獲取完整的年份 4位,1970 4document.write myd...
JS獲取當前日期並定時重新整理
js獲取當前日期時間 var date new date date.getyear 獲取當前年份 2位 date.getfullyear 獲取完整的年份 4位,2014 date.getmonth 獲取當前月份 0 11,0代表1月 date.getdate 獲取當前日 1 31 date.getd...