jQuery UI选项卡参考
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery UI选项卡参考相关的知识,希望对你有一定的参考价值。
$(document).ready(function(){ $('#example > ul').tabs(); }); ==== // add slide effect to a tab $('#example > ul').tabs({ fxSlide: true }); // add a fast fade effect to a tab $('#example > ul').tabs({ fxFade: true, fxSpeed: 'fast' }); // add a slide and fade effect $('#example > ul').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' }); // disable one of the tabs (no-zero-based index) $('#example > ul').tabs({ disabled: [3] }); // start with one of the tabs selected (no-zero-based index) $('#example > ul').tabs(2); // start with one of the tabs selected and another disabled $('#example > ul').tabs(2, { disabled: [1] });
以上是关于jQuery UI选项卡参考的主要内容,如果未能解决你的问题,请参考以下文章