10 lines
290 B
HTML
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>
|