var BootstrapDatetimepicker = { init: function() { $.fn.datetimepicker.dates['zh-CN'] = { days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], today: "今日", suffix: [], meridiem: [] }; $(".datetimepicker").datetimepicker({ language: "zh-CN", // todayHighlight: !0, autoclose: !0, pickerPosition: "bottom-right", format: "yyyy-mm-dd hh:ii:ss", todayBtn: true,//今日按钮 todayBtn:"linked", //选择今天 todayHighlight:true }) } };
初始化
jQuery(document).ready(function () {
BootstrapDatetimepicker.init()
});