返回 例如 2012103243 [php] function show(){ var date = new Date(); //日期对象 var now = ""; now = date.getFullYear()+""; //读英文就行了 now = now + (date.getMonth()+1)+"";//取月的时候取的是当前月-1如果想取当前月+1就可以了 now = now + date.getDate()+""; now = now + date.getHours()+""; now = now + date.getMinutes()+""; now = now + date.getSeconds()+""; //document.getElementById("nowDiv").innerHTML = now; //div的html是now这个字符串 //setTimeout("show()",1000); //设置过1000毫秒就是1秒,调用show方法 alert(now); } [/php]

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-20
猜你喜欢
  • 2021-07-09
  • 2022-12-23
  • 2021-08-03
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案