Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>计算当月剩余天数
</title>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
</head>
<body onload=showTheTime()>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
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);
if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) monarr[1] = "29";
document.write("本月还剩 " + (monarr[month]-now) + " 天!");
// End -->
</script>
</body>
</html>
CSS代码...
xxxxxxxxxx
JS代码...