jquery 选项卡缓存暂时被禁用,以切换选项卡和刷新其他选项卡。但它会重新加载其他选项卡

发布于 2024-10-21 14:38:52 字数 537 浏览 3 评论 0原文

最初我启用了缓存。由于每个选项卡只调用一次 ajax。 在第一次进行某些活动之后,我有意切换选项卡,以便其他选项卡重新加载。为此,我使用 ajaxOptions 禁用 cache:false 。这会使用新值重新加载选项卡。

但是当我切换回第一个选项卡时,问题就出现了,它也会重新加载。

页面加载时,我使用以下代码初始化选项卡。

jQuery('#tabs').tabs({cache:true});

当我想切换到具有新值的其他选项卡时

var $tabs = jQuery('#tabs').tabs({cache:false,ajaxOptions:{data:post_variable,type:'post'}});
$tabs.tabs('select',2); 
jQuery.tabs('options','cache',true});

,切换到选项卡 2 后,但当我单击任何其他选项卡时,所有选项卡都会重新加载。

我不想重新加载其他选项卡,除非我故意重新加载它。

Initially I have enabled caching. Due Which Only One time ajax get called for each tab.
After certain activity on first I am intentionally switching tab so that other tab get reloads. For which I am disabling cache:false with ajaxOptions. Which reloads the tab with new values.

But Problem come when I switch back to first tab it get reloads as well.

When Page load I am initializing tab with following code.

jQuery('#tabs').tabs({cache:true});

When I want to switch to other tab with new values

var $tabs = jQuery('#tabs').tabs({cache:false,ajaxOptions:{data:post_variable,type:'post'}});
$tabs.tabs('select',2); 
jQuery.tabs('options','cache',true});

After this switched to tab no 2 but when i click on any other tab all get reloads.

I dont want to reload other tabs unless and untill i intentionally reloads it.

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

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

发布评论

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

评论(1

或十年 2024-10-28 14:38:52

我认为您需要在 #tabs 元素上将缓存设置为 true,而不是在 jQuery 对象上。

$tabs.tabs('options','cache',true});

另外,根据此页面 http://docs.jquery.com/UI/Tabs#option -cache “为了防止浏览器缓存实际的 Ajax 请求,您需要为 ajaxOptions 提供额外的缓存: false 标志。”。

I'd think you need to set the cache to true on your #tabs element, rather than on the jQuery object.

$tabs.tabs('options','cache',true});

Also, according to this page http://docs.jquery.com/UI/Tabs#option-cache "to prevent the actual Ajax requests from being cached by the browser you need to provide an extra cache: false flag to ajaxOptions.".

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