Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM cuối cùng Thuộc tính được sửa đổi

Thuộc tính HTML DOM lastModified trả về ngày và giờ tài liệu hiện tại được sửa đổi lần cuối.

Cú pháp

Sau đây là cú pháp -

Ngày và giờ trở lại -

document.lastModified

Ví dụ

Hãy để chúng tôi xem một ví dụ cho HTML DOM lastModified tài sản -

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM lastModified</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>HTML-DOM-lastModified</legend>
<label for="textSelect">NOTICE:
<input type="text" size="25" id="textSelect" value="Next Sunday will be a working" disabled>
</label>
<input type="button" onclick="getNoticeIssuedTime()" value="When was this issued?">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var textSelect = document.getElementById("textSelect");
   function getNoticeIssuedTime() {
      divDisplay.textContent = 'Notice was issued on: '+document.lastModified;
   }
</script>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Trước khi nhấp vào ‘Điều này được phát hành khi nào?’ nút -

HTML DOM cuối cùng Thuộc tính được sửa đổi

Sau khi nhấp vào ‘Điều này được phát hành khi nào?’ nút -

HTML DOM cuối cùng Thuộc tính được sửa đổi