JavaScript
JavaScript Date(日期) 对象
- 如何使用 Date() 方法获得当日的日期。
源代码:
点击运行 »
<script> var d = new Date(); document.write(d); </script>
运行结果:
点击运行 »