jquery 选项卡缓存暂时被禁用,以切换选项卡和刷新其他选项卡。但它会重新加载其他选项卡
最初我启用了缓存。由于每个选项卡只调用一次 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要在 #tabs 元素上将缓存设置为 true,而不是在 jQuery 对象上。
另外,根据此页面 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.
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.".