ファイルの更新年月日を表示 | ||
---|---|---|
|
||
ファイルが更新されると自動的に更新年月日も変わるようになります。 以下のJavaScriptをbodyの中の好きな場所に置くだけです! <BODY > <SCRIPT LANGUAGE="JavaScript"> <!-- document.write("Last updated on " + document.lastModified +".") // --> </SCRIPT> </BODY> </HTML> 第2例 <SCRIPT LANGUAGE="JavaScript"> <!-- update = new Date(document.lastModified) theMonth = update.getMonth() + 1 theDate = update.getDate() theYear = update.getYear() document.write("<I>Last updated: " + theYear + "/" + theMonth + "/" + theDate + "</I>") // --> </SCRIPT> |