Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

웹 저장 영역이 HTML로 업데이트될 때 스크립트를 실행하시겠습니까?

<시간/>

온스토리지 사용 웹 저장 영역 업데이트 시 실행할 HTML의 속성입니다. 다음 코드를 실행하여 온스토리지를 구현할 수 있습니다. 속성 -

예시

<!doctype html>
<html>
   <head><title>HTML onstorage</title>
   </head>
   
   <body>
      <h2>Welcome</h2>
      <body onstorage = "javascript:alert('Your learning journey!');">
      Demo text</body>
   </body>
</html>