JavaScript jQuery UI选项卡参考

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 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] });

以上是关于JavaScript jQuery UI选项卡参考的主要内容,如果未能解决你的问题,请参考以下文章

jQuery UI选项卡参考

Jquery ui如何选择启用的选项卡?

将加载图形添加到 JQuery UI Ajax 选项卡?

如何在不同 jquery ui 选项卡中的 gridviews 中使用 jquery Datatable 插件?

jquery ui tabs 高手帮忙怎么实现!

jQuery UI选项卡 - 如何在悬停上选择选项卡