如何使用 cookie 保存游戏中的分数?

发布于 2024-12-07 20:13:30 字数 471 浏览 1 评论 0原文

我目前正在使用 jQuery 制作一个关于 HTML 主题的 Jeopardy 游戏。现在它运行良好,但我想使用 cookie 添加最近保存的分数标签。我不知道如何实现这一目标。

我知道cookie,但我不知道如何获取名称和分数然后保存它。

我想做这样的事情:

最近保存的分数

{NAME HERE}....{Score HERE}
{此处姓名}....{此处得分}
{NAME HERE}....{Score HERE}

它应该可以保存。

这是我的游戏的链接:http://redirectme.yolasite.com/resources/jeopardy.html< /a>

I am currently making an Jeopardy game on the topic of HTML using jQuery. Right now it works well, but I want to add a recent saved scores tag using cookies. I don't know how to achieve this.

I know cookies but I don't know how I will get the name and score and then save it.

I want to do something like this:

Recent Saved Scores

{NAME HERE}....{Score HERE}
{NAME HERE}....{Score HERE}
{NAME HERE}....{Score HERE}

And it's supposed to save.

Here's a link to my game: http://redirectme.yolasite.com/resources/jeopardy.html

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

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

发布评论

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

评论(2

[浮城] 2024-12-14 20:13:30

我建议使用类似 jstorage
如果 localStorage 不可用,它会使用 localStorage 或 cookie。

I would suggest to use something like jstorage
It uses localStorage or cookies if localStorage is not available.

A君 2024-12-14 20:13:30

假设您知道如何使用 javascript 获取/设置 cookie,只需使用 json 对最近分数的数组进行编码即可。

笔记。 cookies将只记录特定计算机的结果。如果您需要高分图表,那么您需要某种后端,例如 php 来存储和检索结果。

如果您需要任何进一步的指导,请告诉我。

Assuming that you know how to get/set cookie with javascript, just use json to encode the array of recent scores.

NOTE. cookies will register only results for the particular computer. if you need highscore chart, then you need some kind of backend e.g. php for storing and retrieving results.

let me know if you need any further guidance.

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