這次帶給大家jQuery EasyUI怎麼操作選項卡面板tabs,jQuery EasyUI操作選項卡面板tabs的注意事項有哪些,下面就是實戰案例,一起來看一下。
1、 對選項卡面板區域 p 設定 class=”easyui-tabs」
2、 對選項卡面板區域新增多個 p,每個 p 就是一個選項卡(每個面板一定設定 title)
3. 設定面板 fit 為 true ,自適應父容器大小
4、 設定選項卡 closable 為 true ,新增可關閉按鈕
5.透過超連結,點擊後,新增新的選項卡
語法: 頁面物件.easyui 外掛(方法名稱, 參數) ;
#<!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:'CSDN博客', content:'学IT,你我他学习吧' }); }); }); </script> </head> <body class="easyui-layout"> <p data-options="region:'north',title:'你我他学习吧-学习Java的好博客!'" 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">你我他学习吧</a> </p> <p data-options="title:'系统菜单'">你我他学习吧</p> </p> </p> <p data-options="region:'center',title:'中部区域'"> <!--选项卡面板--> <p id="mytabs" class="easyui-tabs" data-options="fit:true"> <p data-options="title:'CSDN博客',closable:true">学Java后台编程,就来你我他学习吧!</p> <p data-options="title:'博客园',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>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是jQuery EasyUI怎麼操作選項卡面板tabs的詳細內容。更多資訊請關注PHP中文網其他相關文章!