bootstrap的datetimepicker日曆插件只選擇時段

  • 只選擇時段

 $("#endTime").datetimepicker({
            // format: 'hh:ii:ss',   /* 日期格式化 */
            format: 'hh',   /* 日期格式化 */
            language: 'zh-CN', /* 設置爲中文 */
            autoClose: true,
            startView: 1,
            startDate: new Date(new Date(new Date().toLocaleDateString()).getTime()),
            endDate: new Date(new Date(new Date().toLocaleDateString()).getTime() + 24 * 60 * 60 * 1000 - 60),
            minView: 1
        }).on('hide', function (e) {
        });

 

發佈了31 篇原創文章 · 獲贊 1 · 訪問量 6525
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章