欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

自定义jQuery选项卡插件实例_jquery

程序员文章站 2022-05-23 15:55:29
...
复制代码 代码如下:





jQuery自定义选项卡插件



  • Users

  • Groups


Users Content

Groups Content


jQuery(function ($) {
$('#tabs').tabs('#tabContent');

$('#tab').bind('change.tabs', function (ev, tabName) {
window.loaction.hash = tabName;
});

$(window).bind('hashchange', function () {
var tabName = window.location.hash.slice(1);
$('#tabs').trigger('change.tabs', tabName);
});
});