if (intMonth == 2) {month = "距2006年新年还有"; date = (334 - intDate);}
}
if (intMonth == 3) {month = "距2006年新年还有"; date = (304 - intDate);}
if (intMonth == 4) {month = "距2006年新年还有"; date = (273 - intDate);}
if (intMonth == 5) {month = "距2006年新年还有"; date = (243 - intDate);}
if (intMonth == 6) {month = "距2006年新年还有"; date = (212 - intDate);}
if (intMonth == 7) {month = "距2006年新年还有"; date = (182 - intDate);}
if (intMonth == 8) {month = "距2006年新年还有"; date = (152 - intDate);}
if (intMonth == 9) {month = "距2006年新年还有"; date = (121 - intDate);}
if (intMonth == 10) {month = "距2006年新年还有"; date = (91 - intDate);}
if (intMonth == 11) {month = "距2006年新年还有"; date = (60 - intDate);}
if (intMonth == 12) {month = "距2006年新年还有"; date = (30 - intDate);}
//以下当然意思有所变了,但是一下的 天,时 ,分,秒 意思差不错了
if (date == 1 ){date = ("0"+date+"天 ");}//如果上面的date得1,那就在前面加个0
if (date != 1 && date < 10 && date >=0){date = ("0"+date+"天");}//如果不等于1且小于10,同时大于等于0 都加个0
if (date > 9){date = (date+"天");}//如果大于9就不用加了
if (hours ==1 ){hours = ("0"+hours+"小时");}
if (hours != 1 && hours < 10){hours = ("0"+hours+"小时");}
if (hours > 9){hours = (hours+"小时");}
if (minutes == 1){minutes = ("0"+minutes+"分 ");}
if (minutes != 1 && minutes < 10){minutes = ("0"+minutes+"分");}
if (minutes > 9){minutes = (minutes+"分");}
if (seconds == 1){seconds = ("0"+seconds+"秒 "+"!");}
if (seconds != 1 && seconds < 10){seconds = ("0"+seconds+"秒!");}










