Posted in Javascript onJanuary 14, 2015
本文实例讲述了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获取当前日期的方法
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@