Я хочу иметь переменную, к которой я могу обращаться через страницы. Я пытался использовать окно. (Переменная) .document, но это не сработало для меня. Есть ли способ отправить информацию из одной вкладки в другую? Я не предпочитаю местное хранилище, но если это единственный способ, я могу с этим справиться. Вот что у меня сейчас
<html>
<body>
<button onclick="open()">copy text</button>
<button onclick="run()">open page</button>
<script>
function run() {
//make the window (works)
var w = window.open("", "Game", "width=2000,height=1000");
//make an input in the window (works)
w.document.write("<input id='e'>");
}
function run() {
//get the text from the other window (doesn't work)
var copy = w.document.getElementById("e");
//write the output (works, has nothing to output)
document.write(copy);
}
</script>
</body>
</html>