js按指定格式显示日期时间的样式代码_javascript技巧
程序员文章站
2024-01-31 13:38:10
...
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
时间为当前时间
复制代码 代码如下:
//1.2013-4-9 11:21:32
//2.2013年4月9日 11点21分32秒
//3.2013年4月9日 上午11点21分32秒
//4.2013年4月9日 下午13点21分32秒
/*
var thedate = new Date();
alert(thedate.getFullYear() + '-' + thedate.getMonth() + '-' + thedate.getDate() + ' ' + thedate.toLocaleTimeString());
alert(thedate.toLocaleDateString() + ' ' + thedate.getHours() + '点' + thedate.getMinutes() + '分' + thedate.getSeconds() + '秒');
if (thedate.getHours() alert(thedate.toLocaleDateString() + ' 上午' + thedate.getHours() + '点' + thedate.getMinutes() + '分' + thedate.getSeconds() + '秒');
}
else {
alert(thedate.toLocaleDateString() + ' 下午' + thedate.getHours() + '点' + thedate.getMinutes() + '分' + thedate.getSeconds() + '秒');
}
*/
下一篇: [Java]Swing树状组件JTree
推荐阅读
-
js按指定格式显示日期时间的样式代码_javascript技巧
-
js控制不同的时间段显示不同的css样式的实例代码_javascript技巧
-
js按指定格式显示日期时间的样式代码_javascript技巧
-
仅2行代码的javascript按指定格式显示日期时间效果
-
仅2行代码的javascript按指定格式显示日期时间效果
-
js控制不同的时间段显示不同的css样式的实例代码_javascript技巧
-
指定区域的图片自动按比例缩小的js代码(防止页面被图片撑破)_javascript技巧
-
仅2行代码的javascript按指定格式显示日期时间效果_时间日期
-
为指定元素增加样式的js代码_javascript技巧
-
js实现Form栏显示全格式时间时钟效果代码_javascript技巧