Clock.js文件代码如下:
function Clock() {
var date = new Date();
this.year = date.getFullYear();
this.month = date.getMonth() + 1;
this.date = date.getDate();
this.toString = function() {
return this.year + "年" + this.month + "月" + this.date + "日 " ;
}
}
应用页面(需要在某网页中显示的页面)代码如下:
没有能取到当前日期的HTML标签,只有JS或后端代码可以.
js中用toLocaleString()可获取完整的时间
用js获取之后 再写到 页面上 就好了啊