JavaScript 경고 document.lastModified

Migel Hewage Nimesha 2024년2월15일
  1. JavaScript에서 document.lastModified 경고
  2. 마지막 수정 날짜를 날짜 개체로 변환
  3. 결론
JavaScript 경고 document.lastModified

JavaScript는 웹 애플리케이션 개발을 위한 선도적인 프로그래밍 언어입니다. 이 문서에서는 lastModified라는 JavaScript 속성에 대해 설명합니다.

최근에 수정한 웹 페이지의 날짜와 시간을 알려줍니다. 이 데이터는 웹 서버에서 보내는 HTTP 헤더에서 가져옵니다.

웹 서버는 자신을 분석하는 마지막 수정 날짜와 시간을 얻습니다.

웹 서버의 문서는 선택 사항이며 마지막 수정 날짜를 포함합니다. JavaScript는 웹 서버가 GMT 1970년 1월 1일 자정에 해당하는 최종 수정 날짜를 제공하지 않을 때 0으로 가정합니다.

JavaScript에서 document.lastModified 경고

lastModified는 읽기 전용 속성으로 Document 인터페이스 속성 중 하나이며 웹 브라우저에서는 모든 웹 페이지를 나타냅니다. 또한 lastModified는 문자열 값을 반환합니다.

다음 구문을 사용하여 마지막 수정 날짜를 확인할 수 있습니다.

alert(document.lastModified)

다음과 같이 lastModified를 사용하는 예를 살펴보겠습니다.

<!DOCTYPE html>
<html>
    <header>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=divce-width, initial-scale=1">
    </header>
    <body>
        <script>
            alert(document.lastModified);
        </script>
</body>

이 인스턴스는 웹 페이지에서 수정된 마지막 날짜 및 시간의 문자열을 표시하는 창을 브라우저에 팝업합니다.

출력:

마지막으로 수정된 날짜 및 시간

또한 웹 페이지가 수정될 때 마지막으로 수정된 날짜와 시간을 인쇄하도록 JavaScript 코드를 설정할 수 있습니다. 여기에는 사용자가 웹 사이트의 마지막 수정 날짜에 대한 정보를 얻을 수 있도록 웹 페이지가 포함될 수 있습니다.

<!DOCTYPE html>
<html>
    <header>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=divce-width, initial-scale=1">
    </header>
    <style>
        *{
            background-color: rgb(150, 99, 23);
        }
    </style>
    <body>
        <h2>Display last modified date and time</h2>
        <p id="demo"></p>
        <script>
           let text = document.lastModified;
            document.getElementById("demo").innerHTML = text;
        </script>

    </body>

document.lastModified를 변수 text로 선언하고 마지막으로 수정한 날짜와 시간을 웹 페이지에 표시할 수 있습니다. document.getElementById("demo").innerHTML에 할당할 수 있습니다.

다음은 위의 코드에 대해 얻을 수 있는 출력입니다.

텍스트 변수에서 lastModified 선언

마지막 수정 날짜를 날짜 개체로 변환

마지막으로 수정한 날짜를 날짜 개체로 변환할 수도 있습니다. 날짜 개체는 특정 웹사이트의 시간대와 함께 년, 일, 월 및 시간을 반환합니다.

lastModifiedDate 개체로 변환되면 마지막으로 수정된 날짜가 Date 개체의 출력으로 표시됩니다. 다음 사례를 살펴보겠습니다.

<!DOCTYPE html>
<html>
    <header>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=divce-width, initial-scale=1">
    </header>
    <style>
        *{
            background-color: rgb(244, 240, 11);
        }
    </style>
    <body>
        <h2>Convert lastModified into Date object</h2>
        <p id="dateObject"></p>
        <script>
           const  last_modified= new Date(document.lastModified);
            document.getElementById("dateObject").innerHTML = last_modified;
        </script>
</body>

언급된 예제와 같이 lastModified는 변수로 선언되고 Date라는 새 개체에 할당됩니다. lastModified 날짜를 Date 개체로 변환합니다.

그런 다음 getElementById 함수를 호출하여 값을 표시할 수 있습니다.

이 코드는 마지막으로 수정한 연도, 날짜, 시간 및 시간대를 표시합니다.

lastModified를 날짜 객체로 변환

위의 출력에서와 같이 마지막으로 수정한 날짜를 확인할 수 있습니다.

결론

JavaScript lastModified 속성은 특정 웹 페이지의 마지막 수정 날짜 및 시간을 표시합니다. JavaScript document.lastModified는 HTML DOM 개체입니다.

이것은 HTML 문서가 브라우저에 로드될 때 문서 객체가 된다는 것을 의미합니다.

document 개체는 document 키워드로 액세스할 수 있습니다. 따라서 document 키워드를 사용하여 lastModified에 액세스할 수 있습니다.

document.lastModified는 DOM 레벨 3 기능(2003)이므로 모든 브라우저와 호환됩니다.

따라서 이 문서에서 탐색할 때 최신 변경 날짜를 표시하도록 웹 페이지에 대한 경고를 설정할 수 있습니다.

Migel Hewage Nimesha avatar Migel Hewage Nimesha avatar

Nimesha is a Full-stack Software Engineer for more than five years, he loves technology, as technology has the power to solve our many problems within just a minute. He have been contributing to various projects over the last 5+ years and working with almost all the so-called 03 tiers(DB, M-Tier, and Client). Recently, he has started working with DevOps technologies such as Azure administration, Kubernetes, Terraform automation, and Bash scripting as well.

관련 문장 - JavaScript Alert