前端之家收集整理的这篇文章主要介绍了
jQuery UI选项卡,点击不同的选项卡时更新url,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这应该得到你想要的.我在jquery ui演示中使用了示例html
$( "#tabs" ).tabs({
select: function(event,ui) {
window.location.hash = ui.tab.hash;
}
});
原文链接:https://www.f2er.com/jquery/176696.html