gpt4 book ai didi

javascript - 使用 jquery localstorage 重新加载页面并显示消息

转载 作者:行者123 更新时间:2023-11-30 21:07:13 24 4
gpt4 key购买 nike

在处理该部分时,我曾使用 localstorage 加载页面,但我有点困惑,因为我想传递自定义消息以显示

到目前为止我的使用情况:

success: function(data) {
if ($.trim(data) == 'Complete') {
localStorage.setItem("Success","Thanks this is complete")
location.href = 'index';
}

在顶部我有这个:文件准备好后

if(localStorage.getItem("Success"))
{
$(".msg").html(data); - data i want the message to be appearing which i defined in the localStorage.setItem("Success","Thanks this is complete")
localStorage.clear();
}

最佳答案

使用本地存储的 get 方法应该可以解决问题localStorage.getItem("成功")

if(localStorage.getItem("Success"))
{
$(".msg").html(localStorage.getItem("Success") );
localStorage.clear();
}

LocalStorage 是窗口属性而不是 jquery 函数....

关于javascript - 使用 jquery localstorage 重新加载页面并显示消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46493107/

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