<!-- 日历 -->
<span id="calendar-box">
<div id="blog-calendar" style="visibility: visible;display:block !important;">
<table id="blogCalendar" class="Cal" cellspacing="0" cellpadding="0" title="Calendar" border="0">
</table>
</div>
</span>
<script>
//获取当前年月日
var now = new Date();
var time = now.getFullYear() + "/" + ((now.getMonth() + 1) < 10 ? "0" : "") + (now.getMonth() + 1) + "/" + (now.getDate() < 10 ? "0" : "") + now.getDate();
loadBlogCalendar(time);
</script>