Heim >Web-Frontend >js-Tutorial >用jquery写的一个万年历(自写)_jquery

用jquery写的一个万年历(自写)_jquery

WBOY
WBOYOriginal
2016-05-16 17:03:101168Durchsuche
复制代码 代码如下:






<script> <BR>function getTime(year,month,day){ <BR>y = year <BR>m = month <BR>d = day <BR>var myDate = new Date(year,month-1,day); <BR>return myDate; <BR>} <BR>function days_in_month(year, month) { <BR>y = year; <BR>m = month; <BR>return 32 - new Date(y, m - 1, 32).getDate(); <BR>} <BR>function view(year,month){ <br><br>var w = getTime(year,month,1).getDay()-1; <BR>var num = days_in_month(year,month); <BR>var index = 1; <BR>//console.log(w); <BR>var data = new Array(); <BR>for(var d = 0; d < num+w; d++){ <BR>if(d<w){ <BR>data[d] = ''; <BR>}else{ <BR>data[d] = index; <BR>index++; <BR>} <BR>} <BR>$("#content").html(''); <BR>for(var k =0;k < data.length;k++){ <BR>if(k%7==0){ <BR>$("#content").append("<div id='t"+k+"' class='date1'>"+data[k]+"</script>

");
}else{
$("#content").append("
"+data[k]+"
");
}
}
$("#content > div").mouseover(function(){
if($(this).text()!=''){
$(this).css('background','red');
}
});
$("#content > div").mouseout(function(){
if($(this).text()!=''){
$(this).css('background','gray');
}
});
}

$(document).ready(function (){
for(var t = 1970; t $("#yearsel").append("");
}
for(var y = 1; y $("#monthsel").append("");
}
var year = new Date().getFullYear();
var month = new Date().getMonth()+1;
var day = new Date().getDate();
var w = getTime(year,month,1).getDay()-1;
var num = day + w -1;
$("#yearsel").change(function(){
year = $("#yearsel option:selected").text();
month = $("#monthsel option:selected").text();
view(year,month);
});
$("#monthsel").change(function(){
year = $("#yearsel option:selected").text();
month = $("#monthsel option:selected").text();
view(year,month);
});
var oDate = ['星期一','星期二','星期三','星期四','星期五','星期六','星期日',];
for(var i = 0;i $("#title").append("
"+oDate[i]+"
");
}
$("#yearsel option[value='"+year+"']").attr("selected", true);
view(year,month);
//标记当前日期
$("#t"+num).css('background','yellow');
});




万年历













Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn