JavaScript 参考手册
JavaScript getDay() 方法
返回一周的某一天数字。
源代码:
点击运行 »
<p id="demo">单击按钮显示一周中的今天</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var d = new Date(); var x = document.getElementById("demo"); x.innerHTML = d.getDay(); } </script>
运行结果:
点击运行 »