6/30/12

Đếm số ngày còn lại trong tháng

Hiệu ứng sẽ tính xem tháng hiện hành còn bao nhiêu ngày.


HTML:

<SCRIPT LANGUAGE="JavaScript">
// Justin Smith (jsmith@polbox.com)

var today = new Date();
var now = today.getDate();
var year = today.getYear();
if (year < 2000) year += 1900; // Y2K fix
var month = today.getMonth();

var monarr = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);

// check for leap year
if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) monarr[1] = "29";

// display day left
document.write("There are " + (monarr[month]-now) + " days left in this Month.");

</script>

Bookmark and Share

0 comments:

Post a Comment

Next previous home

Cộng đồng yêu thiết kế Việt Nam Thiet ke website, danang