麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > JavaScript > 正文

使用jquery-easyui的布局layout寫后臺管理頁面的代碼詳解

2019-11-19 11:18:34
字體:
來源:轉載
供稿:網友

先在官網下載easyui文檔

引入頭部文件

<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/themes/default/easyui.css" rel="external nofollow" rel="external nofollow" ><link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/themes/icon.css" rel="external nofollow" rel="external nofollow" ><script type="text/javascript" src="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/jquery.min.js"></script><script type="text/javascript" src="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/jquery.easyui.min.js"></script><script type="text/javascript" src="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/locale/easyui-lang-zh_CN.js"></script>

layout布局如下

<%@ page language="java" contentType="text/html; charset=UTF-8"  pageEncoding="UTF-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Java開源博客系統后臺管理頁面-Powered by java1234</title><link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/themes/default/easyui.css" rel="external nofollow" rel="external nofollow" ><link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/themes/icon.css" rel="external nofollow" rel="external nofollow" ><script type="text/javascript" src="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/jquery.min.js"></script><script type="text/javascript" src="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/jquery.easyui.min.js"></script><script type="text/javascript" src="${pageContext.request.contextPath}/static/jquery-easyui-1.3.3/locale/easyui-lang-zh_CN.js"></script><script type="text/javascript"> function openTab(text,url,iconCls){ if($("#tabs").tabs("exists",text)){  $("#tabs").tabs("select",text); }else{  var content="<iframe frameborder=0 scrolling='auto' style='width:100%;height:100%' src='/admin/"+url+"'></iframe>";  $("#tabs").tabs("add",{  title:text,  iconCls:iconCls,  closable:true,  content:content  }); } }</script></head><body class="easyui-layout"><div region="north" style="height: 78px;background-color: #E0ECFF"> <table style="padding: 5px" width="100%"> <tr>  <td width="50%">  <img alt="logo" src="/static/images/logo.png">  </td>  <td valign="bottom" align="right" width="50%">  <font size="3">  <strong>歡迎:</strong>${currentUser.userName }</font>  </td> </tr> </table></div><div region="center"> <div class="easyui-tabs" fit="true" border="false" id="tabs"> <div title="首頁" data-options="iconCls:'icon-home'">  <div align="center" style="padding-top: 100px"><font color="red" size="10">歡迎使用</font></div> </div> </div></div><div region="west" style="width: 200px" title="導航菜單" split="true"> <div class="easyui-accordion" data-options="fit:true,border:false"> <div title="常用操作" data-options="selected:true,iconCls:'icon-item'" style="padding: 10px">  <a href="javascript:openTab('寫博客','writeBlog.jsp','icon-writeblog')" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-writeblog'" style="width: 150px">寫博客</a>  <a href="javascript:openTab('評論審核','commentReview.jsp','icon-review')" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-review'" style="width: 150px">評論審核</a> </div> <div title="博客管理" data-options="iconCls:'icon-bkgl'" style="padding:10px;">  <a href="javascript:openTab('寫博客','writeBlog.jsp','icon-writeblog')" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-writeblog'" style="width: 150px;">寫博客</a>  <a href="javascript:openTab('博客信息管理','blogManage.jsp','icon-bkgl')" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-bkgl'" style="width: 150px;">博客信息管理</a> </div> <div title="博客類別管理" data-options="iconCls:'icon-bklb'" style="padding:10px">  <a href="javascript:openTab('博客類別信息管理','blogTypeManage.jsp','icon-bklb')" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-bklb'" style="width: 150px;">博客類別信息管理</a> </div> <div title="評論管理" data-options="iconCls:'icon-plgl'" style="padding:10px">  <a href="javascript:openTab('評論審核','commentReview.jsp','icon-review')" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-review'" style="width: 150px">評論審核</a>  <a href="javascript:openTab('評論信息管理','commentManage.jsp','icon-plgl')" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-plgl'" style="width: 150px;">評論信息管理</a> </div> <div title="個人信息管理" data-options="iconCls:'icon-grxx'" style="padding:10px">  <a href="javascript:openTab('修改個人信息','modifyInfo.jsp','icon-grxxxg')" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-grxxxg'" style="width: 150px;">修改個人信息</a> </div> <div title="系統管理" data-options="iconCls:'icon-system'" style="padding:10px">   <a href="javascript:openTab('友情鏈接管理','linkManage.jsp','icon-link')" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-link'" style="width: 150px">友情鏈接管理</a>  <a href="javascript:openPasswordModifyDialog()" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-modifyPassword'" style="width: 150px;">修改密碼</a>  <a href="javascript:refreshSystem()" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-refresh'" style="width: 150px;">刷新系統緩存</a>  <a href="javascript:logout()" rel="external nofollow" class="easyui-linkbutton" data-options="plain:true,iconCls:'icon-exit'" style="width: 150px;">安全退出</a> </div> </div></div><div region="south" style="height: 25px;padding: 5px" align="center"> Copyright © 2012-2016 Java知識分享網 版權所有</div></body></html>

總結

以上所述是小編給大家介紹的使用jquery-easyui的布局layout寫后臺管理頁面的代碼詳解,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 免费视频a | 农村少妇吞精夜夜爽视频 | 91色一区二区三区 | 曰批全过程120分钟免费69 | 国产成人高潮免费观看精品 | 免费国产一级淫片 | av电影免费在线 | 欧美亚洲综合网 | 国产精品99一区二区 | 久久99精品视频在线观看 | 一级免费特黄视频 | 免费试看av | 成人午夜一区二区 | 久久综合精品视频 | 精品无码一区在线观看 | 欧美精品一区二区久久 | 精品久久久久久久久久中出 | 久久久久久久久久性 | 中文字幕在线观看免费 | 久色成人网 | 末成年女av片一区二区 | 成人在线观看小视频 | 精品国产一区二区三区四 | 狠狠干夜夜操 | 欧洲色阁中文字幕 | 日本羞羞的午夜电视剧 | 成人免费网站在线观看视频 | 免费一级高清毛片 | 九一免费版在线观看 | 久久精品免费网站 | 二区视频| 91麻豆精品国产91久久久无需广告 | 国产大片中文字幕在线观看 | 精精国产xxxx视频在线野外 | 天天透天天狠天天爱综合97 | 精品人伦一区二区三区蜜桃网站 | 黄色网址在线免费 | 国产九色在线观看 | 特黄一区二区三区 | 夜添久久精品亚洲国产精品 | 免费国产在线视频 |