ホームページ > 記事 > ウェブフロントエンド > ネイティブ js は date linkage_javascript スキルを実装します
月の判定には判定条件が多すぎるため、if else を使用するとパフォーマンスが大幅に低下します。
の使用をお勧めします。コードは次のとおりです:
完全なソースコード:
this.init();
}
GySetDate.prototype = {
init:function(){
var _that = this;
// 初始化日期
this.setyears({'start':this.start Year,'end':this.end Year});
this.setMonths({'start':this.startMonth});
this.setDays({'year':this.start Year,'month':this.startMonth,'start':this.startDay});
// 年选择
this.eyear.onchange = function(){
var year = parseInt(this.value);
スイッチ(true){
case (年 == _that.start Year):{
_that.setMonths({'start':_that.startMonth});
_that.setDays({'年':_that.start Year,'month':_that.startMonth,'start':_that.startDay});
};ブレイク;
case (年 == _that.end Year):{
_that.setMonths({'start':1,'end':_that.endMonth});
if(_that.endMonth>1){
_that.setDays({'年':_that.end Year,'月':1,'開始':1});
}その他{
_that.setDays({'year':_that.end Year,'month':1,'start':1,'end':_that.endDay});
}
};ブレイク;
デフォルト:{
_that.setMonths({'start':1});
_that.setDays({'start':1,'year':year,'month':1});
}
}
}
// 月选择
this.eMonth.onchange = function(){
var year = parseInt(_that.e Year.options[_that.e Year.selectedIndex].value),
month = parseInt(this.value);
スイッチ(true){
case (年==_その.終了年&&月==_その.終了月):{
_that.setDays({'start':1,'year':year,'month':month,'end':_that.endDay});
};ブレイク;
case (year==_that.start Year&&month==_that.startMonth):{
_that.setDays({'年':_that.start Year,'month':_that.startMonth,'start':_that.startDay});
};ブレイク;
デフォルト:{
_that.setDays({'start':1,'year':year,'month':month});
}
}
}、
/*年、月、日を設定します
---------------------------------
パラメータ値はすべて Number
型です。
*/
// パラメータ {'start':xx,'end':xxx}
setyears:function(opt){
This.e Year.innerHTML = '';
for(var n=opt.start;n<=opt.end;n ){
This.e Year.add(new Option(n,n));
}
}、
// パラメータ {'start':xx,'end':xxx}
//パラメータ 'end' はオプションです。無視した場合は 12 月から始まります
setMonths:function(opt){
This.eMonth.innerHTML = '';
var 月 = opt.end ||
for(var n=opt.start;n<=months;n ){
If(n
This.eMonth.add(new Option(n,n));
}
}、
// パラメータ {'start':xx,'year':xxx,'month':xx,'star':xx,'end':xxx}
//パラメータ「end」はオプションです。無視した場合は、今月末まで開始されます(月に基づいて判断されます)
setDays:function(opt){
This.eDay.innerHTML = '';
var days = opt.end || this.getDays(opt.year,opt.month);
for(var n=opt.start;n<=days;n ){
If(n
This.eDay.add(new Option(n,n));
}
}、
/* 年と月に基づいて、2016-2 などの正しい日数を返します。戻り値は 29 日 (実行年)
-------------------------------------------------- ------------
パラメータ値はすべて Number
型です。
*/
GetDays:function(年,月){
// var aDay = [31,28|29,31,30,31,30,31,31,30,31,30,31];
// 2 月の日データ処理
var FedDays = year%4==0?29:28,
returnDays = '';
var month = month
スイッチ(月){
ケース '01':
ケース '03':
ケース '05':
ケース '07':
ケース '08':
ケース '10':
ケース '12': returnDays = 31;break;
ケース '04':
ケース '06':
ケース '09':
ケース '11': returnDays = 30;break;
ケース '02': returnDays = FedDays;break;
}
return returnDays;
}、
/*ツール補助関数
---------------------------------
*/
GetId:function(id){
return document.getElementById(id);
}
}
エフェクト表示:
その効果は悪くありません、皆さん、それを美化して自分のプロジェクトに使用することができます。