使用 javascript 将文本框保存为 cookies 并打印结果

发布于 2024-12-05 20:26:13 字数 87 浏览 0 评论 0 原文

我是 JavaScript 新手,我需要一个简单的解决方案。

如何从第一个 html 页面保存两个文本框,并将其显示在另一个 html 页面中。

I am new to JavaScript and I need one simple solution.

How to save two text box from first html page, and show it in another html page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静谧 2024-12-12 20:26:13

使用本地存储http://jsfiddle.net/usNwP/localStorage 是一个对象,其值在同一域的页面之间持续存在(在重新加载、导航甚至重新启动计算机后也是如此)。

document.getElementById('save').onclick = function() {
    // save values into localStorage
    localStorage['input1'] = document.getElementById('input1').value;
    localStorage['input2'] = document.getElementById('input2').value;
};

// load textboxes from localStorage (can be on another page)
document.getElementById('input1').value = localStorage['input1'] || "";
document.getElementById('input2').value = localStorage['input2'] || "";

Use localStorage: http://jsfiddle.net/usNwP/. localStorage is an object of which the values persist among pages on the same domain (so also after reloading, navigating or even rebooting the computer).

document.getElementById('save').onclick = function() {
    // save values into localStorage
    localStorage['input1'] = document.getElementById('input1').value;
    localStorage['input2'] = document.getElementById('input2').value;
};

// load textboxes from localStorage (can be on another page)
document.getElementById('input1').value = localStorage['input1'] || "";
document.getElementById('input2').value = localStorage['input2'] || "";
冰火雁神 2024-12-12 20:26:13

有关在 JavaScript 中使用 cookie 所需了解的所有信息:

一些更容易与cookie交互的实用函数(例如在一个页面中设置cookie,在另一个页面中获取cookie):

All you need to know about using cookies with JavaScript:

A few practical functions to interact with cookies easier (for example set a cookie in one page, get a cookie in another):

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文