gpt4 book ai didi

Javascript 将值传递给另一个 JS 类和 HTML 页面

转载 作者:行者123 更新时间:2023-12-02 17:39:19 25 4
gpt4 key购买 nike

我有两个 JavaScript 类/文件和两个 html 页面:

-month.html
-month.js
-day.html
-day.js

我试图弄清楚如何将值从一个 html/js 传递到另一个。例如,当用户单击 month.html 中的日期时,我想将该值从 month.js 传递到 day.js 然后将其显示在 day.html 上。有没有一种快速方法可以将日期传递给 day.html,然后在 day.js 中使用它?

谢谢!

最佳答案

我建议使用 cookie 或 localStorage 来实现此目的。

如果在month.js中使用localStorage,请执行以下操作:

localStorage.setItem('date', date);

并在 day.js 中检索日期:

var date = localStorage.getItem('date');

请记住,旧版浏览器不支持 localStorage。您可以在此处阅读有关替代本地存储方法的更多信息:http://diveintohtml5.info/storage.html

关于Javascript 将值传递给另一个 JS 类和 HTML 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22352978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com