日期:2014-05-17  浏览次数:20802 次

HTML中昨天、上个月怎么表示?
RT

------解决方案--------------------
HTML code
<script>
var n = new Date();
alert("昨天:" + (new Date(n.getFullYear(),n.getMonth(),n.getDate()-1)).toDateString());
alert("上个月:" + (new Date(n.getFullYear(),n.getMonth()-1,n.getDate())).toDateString());
</script>

------解决方案--------------------
2楼的方法我没有试验,但是
如果今天是1号的话,昨天显示0号?
如果今天是3月31号,昨天显示2月31号?
------解决方案--------------------
探讨

2楼的方法我没有试验,但是
如果今天是1号的话,昨天显示0号?
如果今天是3月31号,昨天显示2月31号?