您当前的位置: 首页 >  ui

杨林伟

暂无认证

  • 2浏览

    0关注

    3337博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

18EasyUI 布局- 添加自动播放标签页(Tabs)

杨林伟 发布时间:2019-04-17 16:18:46 ,浏览量:2

Tabs 组件显示第一个 tab 面板,然后显示第二个、第三个… 我们将写一些代码来自动地切换 tab 面板,然后让它循环。

案例

在这里插入图片描述



	
	
	
	Add autoplay to tabs - jQuery EasyUI Demo
	
	
	
	
	
	
		$(function(){
			var index = 0;
			var t = $('#tt');
			var tabs = t.tabs('tabs');
			setInterval(function(){
				t.tabs('select', tabs[index].panel('options').title);
				index++;
				if (index >= tabs.length){
					index = 0;
				}
			}, 3000);
		});
	


	Add autoplay tab demo
	
The tab panel can be auto switched to next.
关注
打赏
1662376985
查看更多评论
立即登录/注册

微信扫码登录

0.3016s