画像の修正日、更新日などを表示する |
Internet Explorer | Netscape Navigator | iCab | Safari | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3.0x | 4.0x | 4.5 | 5.0x | 5.5 | 6.0 | 2.0x | 3.0x | 4.0x | 4.x | 6.0 | 7.0 | 2.x | 1.x | |
Windows | × | ? | - | ○ | ○ | ○ | × | × | × | × | × | × | - | - |
Macintosh | × | × | × | × | - | - | × | × | × | × | × | × | × | × |
UNIX | - | - | - | - | - | - | × | × | × | × | × | × | - | - |
ポイント | var cdObj = document.images["checkFile"].fileCreatedDate; var mdObj = document.images["checkFile"].fileModifiedDate; var udObj = document.images["checkFile"].fileUpdatedDate; |
---|---|
説 明 | fielCreatedDateがファイル作成日、fileModifedDateがファイル修正日、fileUpdatedDateがファイル更新日のプロパティになります。 |
サンプル | <html> <head> <title>修正日チェック</title> <script language="JavaScript"><!-- function check() { var cdObj = document.images["checkFile"].fileCreatedDate; var mdObj = document.images["checkFile"].fileModifiedDate; var udObj = document.images["checkFile"].fileUpdatedDate; alert("作成日:"+cdObj+"\n修正日:"+mdObj+"\n更新日:"+udObj); } // --></script> </head> <body> <img src="mark.gif" name="checkFile"><br><br> <a href="javascript:check()">修正日チェック</a> </body> </html> |
補足説明 | Opera 6, 7では動作しません。 |
■サンプルスクリプトを実行する >>実行 ■各ブラウザでの動作結果を見る >>View! |