js日期控件遇到的问题
一、问题:
在web项目里有很多时候需要使用日期控件来完成相关的功能,但是日期控件的日期格式又和我们的需求不符
那么,就需要我们来自定义日期的格式完成需求
二、解决:
1、取月末:
(1)强制取值:
//判断每个月最后一天
function lastDay(cYear,cMouth){
var year;
var mouth;
if (cYear != "" && cMouth!="") {
year=cYear;
mouth=cMouth;
} else {
var date =new Date();
year=date.getFullYear();//获取年份
mouth=date.getMonth() + 1;
}
var days;
if (mouth==2) {
//当月份为二月时,根据闰年还是非闰年判断天数
if (year % 400 == 0 || year % 4 == 0 && year % 100 != 0 ) {
days=29;
}else{
days=28;
};
}else if (mouth == 1 || mouth == 3 || mouth == 5 || mouth == 7 || mouth == 8 || mouth == 10 || mouth == 12) {
//月份为:1,3,5,7,8,10,12 时,为大月.则天数为31
days= 31;
}else {
//其他月份,天数为:30.
days= 30;
}
return days;
};(2)使用js日期函数来求:原理涉及到js日期函数的顺序加载问题,先加一,后减一
function getPreMonthLastDay() { // debugger;
var date = new Date();
var year = date.getFullYear().toString();
var month = (date.getMonth()).toString();
var temp = new Date(year,month,0);
day = (temp.getDate()).toString(); if(month.length == 1) month = "0" + month;
if(day.length == 1) day = "0" + day; return year + "-" + month + "-" + day; }2、日期位数不定:(区分年报,月报,日报)
//初始化日期
var firstLoad = 0;
function initReportDateFun(rtypeV){
$("#reportDate").datebox({
width:150,
required:false,
onSelect:function(date){
//var date = $("#reportDate").datebox("getValue");
var selectValue = $('#reportFileType').combobox("getValue");
var tvalue = "";
if(selectValue == "Y"){
tvalue = fmtReportDate(date,"yyyy");
}else if(selectValue == "M"){
tvalue = fmtReportDate(date,"yyyy-MM");
}else{
tvalue = fmtReportDate(date,"yyyy-MM-dd");
}
$("#reportDate").datebox("setText",tvalue);
},
parser:function(date){
var t = Date.parse(date);
if (!isNaN(t)){
return new Date(t);
} else {
return new Date();
}
}
}); // var selectValue = $('#reportFileType').combobox("getValue");
if(rtypeV == "Y"){
$("#reportDate").datebox("setText",fmtReportDate(new Date(),"yyyy"));
}else if(rtypeV == "M"){
$("#reportDate").datebox("setText",fmtReportDate(new Date(),"yyyy-MM"));
}else{
if(firstLoad>0){
$("#reportDate").datebox("setText",fmtReportDate(new Date(),"yyyy-MM-dd"));
}else{
$("#reportDate").datebox("setText",getPreMonthLastDay());
firstLoad ++;
}
}
/*if(firstLoad==0){
clearVal();
/!*var curr_time = new Date();
var strDate = curr_time.getFullYear()+"-";
strDate += curr_time.getMonth()+1+"-";
strDate += curr_time.getDate();
$("#reportDate").datebox("setValue", strDate);
initTxtOrg();*!/
firstLoad++;
}else{*/
initTxtOrg();
init_report_detail_tab();
initStatisTable();
//}
}出现的问题:
之前没有加【parser】函数,会出现一个问题,选择5月份的日期后,日期框还是保留【今天】,日期和框显示的数据不一致
可能是由于处理时间的时候会把数据作文文本显示,但是控件并不能解析这个字符串而让面板和显示的字符串日期保持一致
使用【parser】函数后,每次加载完成,会把字符串解析成一个日期函数以供控件加载初始化数据
js日期控件遇到的问题的更多相关文章
- 利用js日期控件重构WEB功能
开发需求:网页中的日期部门(注册页面和查询条件)都用js日期控件重写 页面一:更新员工页面 empUpdate.jsp 中增加 onfocus 事件 入职日期:<input id="h ...
- JSP JS 日期控件的下载、使用及注意事项
网上流行的时间日期控件比较多,个人觉得My97DatePicker的日期控件不错,值得推荐. 具体的使用过程如下: 1.下载My97DatePicker.rar或 My97DatePickerBeta ...
- js日期控件demo
最近在钻研前端,写了个日期控件,内涵代码注释,希望能帮助到大家~ 1.html代码 <!DOCTYPE html> <html xmlns="http://www.w3.o ...
- js 日期控件 可以显示为和历
日期控件的js <!-- /** * Calendar * @param beginYear 1990 * @param endYear 2010 * @param language 0(zh_ ...
- js日期控件
My97日期控件 官方网站 My97 Datepicker Home http://www.my97.net/
- layDate1.0正式公布,您一直在寻找的的js日期控件
你是时候换一款日期控件了,而layDate很愿意和您成为工作伙伴.她正致力于成为全球最高大上的web日期支撑,为国内外全部从事web应用开发的同仁提供力所能及的动力.她基于原生JavaScript精心 ...
- 推荐几款开源的js日期控件
做为一个正规的网站,经常需要一些日期或时间的筛选,所以我们今天就推荐二十多款javascript的js日期/时间筛选插件.个个经典,绝对有你需要的. My97DatePicker ,国人开发的一款js ...
- js 日期控件laydate使用
官网 http://sentsin.com/layui/laydate/ 1. 下载官网上的压缩包,解压后只需要复制laydate 文件夹到你的项目中; 2. 在页面引入 <script t ...
- WebFrom 的js日期控件
1.WdatePicker.js /* * My97 DatePicker 4.7 Release * License: http://www.my97.net/dp/license.asp */ v ...
随机推荐
- 可以在命令行直接使用密码来进行远程连接和远程拉取文件的命令:sshpass
应用范围:可以在命令行直接使用密码来进行远程连接和远程拉取文件. 使用前提:对于未连接过的主机.而又不输入yes进行确认,需要进行sshd服务的优化: # vim /etc/ssh/ssh_con ...
- yii2.0 联表查询数据库报错:undefined index order_id
1.在查询时加了->select();如下,要加上order_id,即关联的字段(比如:order_id)比如要在select中,否则会报错:undefined index order_id / ...
- Python 模块化 from .. import 语句介绍 (二)
from语句 例一. from pathlib import Path,PosixPath print(dir()) print(Path) print(PosixPath) 运行结果: ['Path ...
- Gradle初步
一.介绍 Gradle是一个基于 JVM 的富有突破性构建工具. 它为您提供了: 一个像 ant 一样,通用的灵活的构建工具 一种可切换的,像 maven 一样的基于约定优于配置的构建框架 强大的多工 ...
- js 日历插件开发
1.HTML完整代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset=& ...
- 生产者-消费者模型-线程安全队列Queue
#python3 #product new data into the queue #comsume data from the queue from queue import Queue impor ...
- PE下安装官方WIN7
进入PE后,用虚拟光驱 加载 win*.iso 文件后,运行安装程序setup.exe. 开始安装:
- Python 分支、循环、条件、枚举
对于表达式,分为“左结合”和“右结合” 左结合:对于没有 = 号的,从左到右边,当然要考虑优先级. 右结合:对于有 = 号存在的情况,右边的自成一体,然后赋值给左边变量 优先级: 逻辑运算符的优先 ...
- MySQL学习【第五篇SQL语句上】
一.mysql命令 1.连接服务端命令 1.mysql -uroot -p123 -h127.0.0.1 2.mysql -uroot -p123 -S /tmp/mysql.sock 3.mysql ...
- es6 入坑笔记(二)---函数扩展,箭头函数,扩展运算符...
函数扩展 1.函数可以有默认值 function demo( a = 10,b ){} 2.函数可以使用解构 function demo( { a = 0,b = 0 } = {} ){ } 3.函数 ...