可以用pg自带函数select extract(dow from current_date),之所以没用主要是展示一下通过数学方法计算日期的原理. drop function if exists getDateWeek(date);drop function if exists intervalDay(date);drop function if exists getMonMaxDay(integer,integer);drop function if exists getMonMaxDate(…
<html xmlns="http://www.w3.org/1999/xhtml" > <meta charset="UTF-8"> <head> <title>获取当年当月最后一天日期</title> <script language="javascript"> function getLastDay(){ var year = document.getElementBy…