en.javascript.info/6-data-storage/02-localstorage/sessionstorage.view/index.html
2019-04-02 14:01:44 +03:00

10 lines
290 B
HTML

<!doctype html>
<script>
window.addEventListener('storage', event => {
alert("index.html: onstorage");
});
</script>
<button onclick="sessionStorage.setItem('now', new Date())">sessionStorage.setItem</button>
<iframe src="iframe.html" style="height:100px"></iframe>
</body>
</html>