本文實例講述了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(){
var mydate = new Date();
var str = "" + mydate.getFullYear() + "年";
str += (mydate.getMonth()+1) + "月";
str += mydate.getDate() + "日";
return str;
}
$("input[type='button']").click(function(){
$("p").html("今天是 " + show());
});
});
</script>
</head>
<body>
<input type="button" value="看看現在的時間" />
<p></p>
</body>
</html>
希望本文所述對大家的jQuery程序設計有所幫助。