<頭>
jquery 現在の日付
<スクリプトタイプ="text/javascript">
$(関数(){
関数 show(){
var mydate = new Date();
var str = "" mydate.getFull Year() "年";
str = (mydate.getMonth() 1) "月";
str = mydate.getDate() "日";
戻り値 str;
}
$("input[type='button']").click(function(){
$("p").html("今日は " show());
});
});