last

英[lɑ:st] 美[læst]

n.last;end;last;shoe last (model for making shoes)

vt. Withstand; after...; enough; enough to maintain (especially for a certain period of time)

adj. The last; the nearest; the least likely; the only remaining one

vi.Continue

adv.Last; last time, most recent time

Third person singular: lasts Present participle: lasting Past tense: lasted Past participle: lasted

modified

UK['mɒdɪfaɪd] US['mɒdəˌfaɪd]

adj.Improved, improved, revised

vt. Modification

v. Modify; modify, change (past tense and past participle of modify); change; ease

javascript lastModified属性 syntax

Function: Returns the date and time when the document was last modified.

Syntax: document.lastModified

Description: This value comes from the Last-Modified HTTP header, which is sent by the web server. options.

javascript lastModified属性 example

<html>
<body>
<meta charset="UTF-8">
文档最近修改的日期为:
<script type="text/javascript">
    document.write(document.lastModified)
</script>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance