﻿  var now=new Date();
  y=now.getFullYear();
  m=now.getMonth()+1;
  d=now.getDate();
document.write( y+"年"+m+"月"+d+"日");  
