»
Tiếng AnhTiếng PhápTiếng Việt

In - Số ngày hết tháng - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thời gian » Bộ đếm » Số ngày hết tháng
URL: https://www.javascriptbank.com/days-left-script.html

Số ngày hết tháng © JavaScriptBank.comHiệu ứng sẽ tính xem tháng hiện hành còn bao nhiêu ngày.

Phiên bản đầy đủ: jsB@nk » Thời gian » Bộ đếm » Số ngày hết tháng
URL: https://www.javascriptbank.com/days-left-script.html



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 fixvar month = today.getMonth();var monarr = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);// check for leap yearif (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) monarr[1] = "29";// display day leftdocument.write("There are " + (monarr[month]-now) + " days left in this Month.");</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->