Home > Web Front-end > Layui Tutorial > How to modify the layui date start and end time selector to 1900 after resetting it

How to modify the layui date start and end time selector to 1900 after resetting it

下次还敢
Release: 2024-04-04 02:45:20
Original
945 people have browsed it

layui date start and end time selector is modified to 1900 after reset

Question: How to modify layui date start and end time selector to be reset to 1900?

Solution:

  1. Modify the startTime parameter
layui.laydate.render({
  elem: '#开始时间',
  type: 'datetime',
  startTime: '2012-01-01 00:00:00' // 修改为起始时间
});
Copy after login
  1. Modify endTime parameter
layui.laydate.render({
  elem: '#结束时间',
  type: 'datetime',
  endTime: '2023-12-31 23:59:59' // 修改为结束时间
});
Copy after login
  1. Use range parameter
layui.laydate.render({
  elem: '#日期范围',
  type: 'datetime',
  range: true,
  value: '2022-03-01 00:00:00 ~ 2022-03-31 23:59:59' // 设置初始范围值
});
Copy after login

Note:

  • The start time and end time must conform to the format of yyyy-MM-dd HH:mm:ss.
  • When using the range parameter, the value parameter must be a combination of two time ranges, separated by ~.

The above is the detailed content of How to modify the layui date start and end time selector to 1900 after resetting it. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
How about layui framework?
From 1970-01-01 08:00:00
0
0
0
layui cannot be loaded
From 1970-01-01 08:00:00
0
0
0
Why is the reference to layui file invalid?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template