淡入本地存储值
我有几个选项卡,它们的 ID 是我试图淡入的本地存储中的项目。
选项卡淡入:$('Tab1').show();
现在,我已将“Tabvalue”的值设置为“Tab1”,并尝试将其淡入,如下所示:$("#" + $ (localStorage.getItem("TabValue"))).Show();
但它似乎不起作用。
有谁知道我该如何解决这个问题?
I have few tabs which their ID is the Item in localstorage which I'm trying to fadeIn.
Tab fadeIn with: $('Tab1').show();
Now, I've set the value of 'Tabvalue' to 'Tab1' and I tried to fade it in as follow: $("#" + $(localStorage.getItem("TabValue"))).Show();
but it doesn't seem to work.
Does anyone know how can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
localStorage 值不需要包装在
$()
中,因为它是一个字符串,会转换为 jQuery 对象,然后返回为(大部分无用的)字符串。另外,Show()
需要是show()
。Try this:
the localStorage value doesn't need to be wrapped in
$()
as it's a string, gets converted to an jQuery object, and back to a (mostly useless) string. Also,Show()
needs to beshow()
.