jquery获取当前⽇期的⽅法本⽂实例讲述了jquery获取当前⽇期的⽅法。分享给⼤家供⼤家参考。
具体如下:
复制代码代码如下:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>jquery当前⽇期</title>
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(function(){
function show(){
jquery自动轮播图代码var mydate = new Date();
var str = "" + FullYear() + "年";
str += (Month()+1) + "⽉";
str += Date() + "⽇";
return str;
}
$("input[type='button']").click(function(){
$("p").html("今天是 " + show());
});
});
</script>
</head>
<body>
<input type="button" value="看看现在的时间" />
<p></p>
</body>
</html>
PS:这⾥再为⼤家推荐⼏款时间及⽇期相关在线⼯具供⼤家参考使⽤:
希望本⽂所述对⼤家的jQuery程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。