How to create calendar verification function in H5
This time I will show you how to make a calendar verification function in H5. How to make a calendar verification function in H5? What are the precautions for H5 to implement the calendar verification function? The following is a practical case, let’s take a look.
Calendar control custom style
HTML5 provides the calendar control function, which reduces development time, but sometimes its style is indeed unsatisfactory. We can modify it ourselves according to the following code.
Suggestion: Copy the code snippet below and create a separate css file for our convenience.
/* 修改日历控件类型 */
::-webkit-datetime-edit { padding: 1px;} /*控制编辑区域的*/
::-webkit-datetime-edit-fields-wrapper { background-color: #fff; } /*控制年月日这个区域的*/
::-webkit-datetime-edit-text { color: #333; padding: 0 .5em; } /*这是控制年月日之间的斜线或短横线的*/
::-webkit-datetime-edit-year-field { color: #333; } /*控制年文字, 如2013四个字母占据的那片地方*/
::-webkit-datetime-edit-month-field { color: #333; } /*控制月份*/
::-webkit-datetime-edit-day-field { color: #333; } /*控制具体日子*/
::-webkit-inner-spin-button { visibility: hidden; } /*这是控制上下小箭头的*/
::-webkit-calendar-picker-indicator { /*这是控制下拉小箭头的*/
border: 1px solid #ccc;
border-radius: 2px;
box-shadow: inset 0 1px #fff, 0 1px #eee;
background-color: #eee;
background-image: -webkit-linear-gradient(top, #f0f0f0, #e6e6e6);
color: #666;
}
::-webkit-clear-button { /*控制清除按钮*/
}2. Date verification function
The end date cannot be less than the start date, the date selection range is 7 days, and the remaining time periods are not selectable.
Note: The following code snippet uses Jquery principle
//转换时间类型为 yyyy-mm-dd
function FormatDate (strTime) {
var date = new Date(strTime);
var formatedMonth = ("0" + (date.getMonth() + 1)).slice(-2);
var formatedDate = ("0" + (date.getDate())).slice(-2);
return date.getFullYear()+"-"+formatedMonth+"-"+formatedDate;
}
//开始时间
$("#keyword_time_min").change(function(){
var d1=new Date($(this).val()); //获取当前时间
var d2=new Date(d1);
// d2.setFullYear(d2.getFullYear()+1); //当前时间+1年
d2.setDate(d2.getDate()+7); //当前时间+7天
d2=FormatDate(d2); //转换d2为YYYY-MM-DD格式
$("#keyword_time_max").attr("max",d2); //最大时间为d2
$("#keyword_time_max").attr("min",$(this).val()); //最小时间为当前时间
});
//终止时间
$("#keyword_time_max").change(function(){
var d3=new Date($(this).val());
var d4=new Date(d3);
// d4.setFullYear(d4.getFullYear()-1);
d4.setDate(d4.getDate()-7); //当前时间-7天
d4=FormatDate(d4);
$("#keyword_time_min").attr("min",d4);
$("#keyword_time_min").attr("max",$(this).val());
});I believe you have mastered the method after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!
Related reading:
What are the new interactive features between H5 and C3
Summary of block-level tags in H5
How to create a drag effect in H5
The above is the detailed content of How to create calendar verification function in H5. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1380
52
Table Border in HTML
Sep 04, 2024 pm 04:49 PM
Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.
HTML margin-left
Sep 04, 2024 pm 04:48 PM
Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.
Nested Table in HTML
Sep 04, 2024 pm 04:49 PM
This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.
HTML Table Layout
Sep 04, 2024 pm 04:54 PM
Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.
HTML Input Placeholder
Sep 04, 2024 pm 04:54 PM
Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.
HTML Ordered List
Sep 04, 2024 pm 04:43 PM
Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively
Moving Text in HTML
Sep 04, 2024 pm 04:45 PM
Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.
HTML onclick Button
Sep 04, 2024 pm 04:49 PM
Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.


