html特效代碼 41. 日期減去天數(shù)等于第二個日期
提問人:劉團圓發(fā)布時間:2020-11-02
<script language=Javascript>
function cc(dd,dadd)
{
//可以加上錯誤處理
var a = new Date(dd)
a = a.valueOf()
a = a - dadd * 24 * 60 * 60 * 1000
a = new Date(a)
alert(a.getFullYear() + "年" + (a.getMonth() + 1) + "月" + a.getDate() + "日")
} cc("12/23/2002",2)
</script>
繼續(xù)查找其他問題的答案?
相關視頻回答
點擊加載更多評論>>