Home > Article > Web Front-end > Use of tabs in jQuery EasyUI tab panel
This time I will bring you jQuery How to use the tabs of the EasyUI tab panel, what are the precautions for using the tabs of the jQuery EasyUI tab panel, the following is a practical case, let’s take a look take a look.
1. Set class="easyui-tabs" to the tab panel area p
2. Add multiple p's to the tab panel area, each p is a tab (each The panel must have a title)
3. Set the panel fit to true and adapt to the size of the parent container
4. Set the tab closable to true and add a close button
5 , through hyperlink, after clicking, add a new tab
Syntax: PageObject.easyui plug-in (method name, parameters) ;
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>easyui-选项卡面板tabs的使用</title> <!-- 导入jquery核心类库 --> <script type="text/javascript" src="../js/jquery-1.8.3.js"></script> <!-- 导入easyui类库 --> <link id="easyuiTheme" rel="stylesheet" type="text/css" href="../js/easyui/themes/default/easyui.css" rel="external nofollow" > <link rel="stylesheet" type="text/css" href="../js/easyui/themes/icon.css" rel="external nofollow" > <link rel="stylesheet" type="text/css" href="../css/default.css" rel="external nofollow" > <script type="text/javascript" src="../js/easyui/jquery.easyui.min.js"></script> <script type="text/javascript"> //页面加载后执行 $(function(){ //对链接绑定点击事件 $("#nwtxxb").click(function(){ //添加一个新的选项卡 $("#mytabs").tabs('add',{ title:'123', content:'456,' }); }); }); </script> </head> <body class="easyui-layout"> <p data-options="region:'north',title:'123'" style="height:100px"></p> <p data-options="region:'west',title:'菜单导航'" style="width:200px"> <!--折叠面板--> <p class="easyui-accordion" data-options="fit:true"> <p data-options="title:'基础菜单'"> <a href="javascript:void(0)" rel="external nofollow" id="nwtxxb">123</a> </p> <p data-options="title:'系统菜单'">123</p> </p> </p> <p data-options="region:'center',title:'中部区域'"> <!--选项卡面板--> <p id="mytabs" class="easyui-tabs" data-options="fit:true"> <p data-options="title:'123',closable:true">后台编程</p> <p data-options="title:'456',closable:true">前端开发</p> </p> </p> <p data-options="region:'east',title:'东部区域'" style="width:100px"></p> <p data-options="region:'south',title:'南部区域'" style="height:100px"></p> </body> </html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
jQuery adds new elements to dynamic lists
Practical jQuery drawer online customer service
jquery dynamically merge cells
The above is the detailed content of Use of tabs in jQuery EasyUI tab panel. For more information, please follow other related articles on the PHP Chinese website!