页面刷新/离开并返回页面后记住上次单击的 dojo 选项卡
我的页面上有两个 dojo 容器。主容器具有三个内容窗格(选项卡):pane1、pane2 和pane3。 Pane2 有另一个容器,它又具有两个窗格(选项卡):pane2a 和pane2b。我编写的 JavaScript 代码是什么,用于在刷新/移开并返回同一页面后记住最后选定的选项卡。 persist=true 不适用于我的 dojo 版本。请帮忙。
I have two dojo containers on page. The main container has three content panes (tabs), pane1, pane2 and pane3. Pane2 has another container which has two panes(tabs) again, pane2a and pane2b. What is the javascript code I write to make the last selected tabs remembered after refreshing/moving away and coming back to the same page. persist=true isn't working with my version of dojo. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每当选择选项卡时,您可以使用 dojo.cookie() 设置 cookie,然后在页面加载时读取 cookie 并选择相关选项卡。
You could use dojo.cookie() to set a cookie whenever a tab is selected, then read the cookie on page load and select the relevant tab.