首页 > 其他分享 >团队博客-23.4.5

团队博客-23.4.5

时间:2023-04-06 18:26:50浏览次数:40  
标签:function document 博客 font getElementById 23.4 var 团队 border

<%@ 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>
         <title>教学管理系统</title>
         <style type="text/css">
.student_picture{
    border-radius:100%;
    border:0px;
}
.school_picture{
    width:50px;
    height:50px;
    border-radius:100%;
    border:1px;
}
body {
 background-color: #F5DEB3 
}
table {
    /*表格边框为实线或者是空心双线*/
    border-collapse: collapse;
    /*边框与边框的空间*/
    border-spacing: 0;
}

a {
    color: rgb(60, 114, 53);
    text-decoration: none;
    font-size: 12px;
}

a:hover {
    color: rgb(60, 114, 53);
    text-decoration: underline;
    font-size: 12px;
}

a:visited {
    color: rgb(0, 106, 78);
    font-size: 12px;
}
/*整个tab层居中,宽度为600px*/
#tabDiv {
    background: rgb(176,196,222);
    FILTER:alpha(opacity=40);
}
/*tab头的样式*/
#tabsHead {
    padding-left: 0px;
    height: 26px;
    background-color: rgb(179, 247, 19);
    font-size: 1em;
    color: rgb(179, 247, 19);
    line-height: 26px;
}
/*已选tab头(超链接)的样式*/
.curtab {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    border-right: rgb(209, 226, 49) 1px solid;
    font-weight: bold;
    float: left;
    cursor: pointer;
    background: #ffffff;
}
/*未选tab头(超链接)的样式*/
.tabs {
    border-right: rgb(209, 226, 49) 1px solid;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    font-weight: normal;
    float: left;
    cursor: pointer;
}
p {
    font-size: 12pt;
    text-indent: 2em;
}
li {
      border-bottom-style: solid;
      border-bottom-color: #EEE;
      border-bottom-width: thin;
      height: 25px;
    font-family: "宋体";
    font-size: 20pt;
}
</style>
<script type="text/jscript">    
        //显示tab(tabHeadId:tab头中当前的超链接;tabContentId要显示的层ID)
        function showTab(tabHeadId,tabContentId) 
        {
            //tab层
            var tabDiv = document.getElementById("tabDiv");
            //将tab层中所有的内容层设为不可见
            //遍历tab层下的所有子节点
            var taContents = tabDiv.childNodes;
            for(i=0; i<taContents.length; i++) 
            {
                //将所有内容层都设为不可见
                if(taContents[i].id!=null && taContents[i].id != 'tabsHead')
                {
                    taContents[i].style.display = 'none';
                }
            }
            //将要显示的层设为可见
            document.getElementById(tabContentId).style.display = 'block';          
            //遍历tab头中所有的超链接
            var tabHeads = document.getElementById('tabsHead').getElementsByTagName('a');
            for(i=0; i<tabHeads.length; i++) 
            { 
                //将超链接的样式设为未选的tab头样式
                tabHeads[i].className='tabs'; 
            }
            //将当前超链接的样式设为已选tab头样式
            document.getElementById(tabHeadId).className='curtab';
            document.getElementById(tabHeadId).blur();
        }
        
</script>
</head>
<%
String a=request.getParameter("a");
if(a==null){
    a="1";
}
%>
<body>
<table id="tabDiv" border="1" style="font-size:18px;width:1460px;">
<tr><td style="width:40px;height:40px;" align="center" >
<img src="school.png" class="school_picture" >
</td>
<td style="width:240px;height:40px;">
<%out.print("欢迎石家庄铁道大学的管理员"); %>
</td>
<td style="width:200px;height:40px;cursor: pointer" align="center" id="executive">
行政管理
</td>
<td style="width:200px;height:40px;cursor: pointer" align="center" id="lesson">
课程管理
</td>
<td style="width:200px;height:40px;cursor: pointer;" align="center" id="wifi">
网课管理
</td>
<td style="width:200px" align="center">
<font color="red">管理员:<%out.print("54188"); %></font>
<a href="Login.jsp"><button>退出登陆</button></a>
</td>
</tr>
</table>
<%if(a.equals("1")) {%>
<br><br>
<table style="width:1460px;font-size:18px;height:600px;" border="1" id="tabDiv">
<tr>
<td align="center" style="cursor:pointer" id="Select_user">浏览用户
</td><td align="center" style="cursor:pointer" id="Add_user">增添用户</td>
</tr>
</table>
<script type="text/javascript">
var Select_user=document.getElementById('Select_user');
var Add_user=document.getElementById('Add_user');
Select_user.onclick=function(){
    window.location.href='Select_user.jsp';
}
Add_user.onclick=function(){
    window.location.href='Add_user.jsp';
}
</script>
<%}
else if(a.equals("2")){ %>
<br><br>
<table style="width:1460px;font-size:18px;height:600px;" border="1" id="tabDiv">
<tr>
<td align="center" style="cursor:pointer" id="a">批阅课程
</td>
<td align="center" style="cursor:pointer" id="b">排班</td>
</tr>
<tr>
<td align="center" style="cursor:pointer" id="c">浏览课程
</td>
<td align="center" style="cursor:pointer" id="d">浏览实验</td>
</tr>
</table>
<script type="text/javascript">
var a=document.getElementById('a');
var b=document.getElementById('b');
var c=document.getElementById('c');
var d=document.getElementById('d');
a.onclick=function(){
    window.location.href='Browse_Audit.jsp?identity=Root';
}
b.onclick=function(){
    alert('该功能尚未开发');

}
c.onclick=function(){
    window.location.href='Browse_lesson.jsp?identity=Root';
}
d.onclick=function(){
    window.location.href='Browse_experiment.jsp?identity=Root';
}
</script>
<%}
else{%>

<%} %>
<script type="text/javascript">

var executive=document.getElementById('executive');
var lesson=document.getElementById('lesson');
var wifi=document.getElementById('wifi');

executive.onclick=function(){
    window.location.href='all_Root.jsp?a=1';
}
lesson.onclick=function(){
    window.location.href='all_Root.jsp?a=2';
}
wifi.onclick=function(){
    alert('该功能尚未开发完毕');
}
</script>
</body>
</html>

 

标签:function,document,博客,font,getElementById,23.4,var,团队,border
From: https://www.cnblogs.com/kaixingaoxing/p/17293701.html

相关文章

  • 2023.4.5每日总结
    二进制存储packagepdf;importjava.io.*;importjava.sql.Connection;importjava.sql.DriverManager;importjava.sql.Statement;publicclassout{publicbooleanin(Filefile)throwsException{Class.forName("com.mysql.jdbc.Driver");......
  • 2023.4.6每日总结
    <%@pagelanguage="java"contentType="text/html;charset=UTF-8"pageEncoding="UTF-8"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"&g......
  • 每日总结-23.4.5
    <%@pagelanguage="java"contentType="text/html;charset=UTF-8"pageEncoding="UTF-8"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"&g......
  • 坚持写博客
    理由如下:在程序员这个行业,坚持做技术写作的人一直比较少。我和身边的朋友沟通后,发现他们除了借口没有时间外,大多没有意识到写作带来的收益。在他们看来,将自己学到的知识简单记录下来就足够自己需要的时候回顾了。而技术写作通常需要花更多时间,因为需要将技术的细节以及来龙去脉讲......
  • 为博客园加上PWA支持
    在这篇博客文章中,我将分享如何将您的博客首页作为PWAApp固定到iOS设备的主屏幕上。这样,博客将以全屏模式打开,提供更好的用户体验。在查阅了iOS如何添加网页到主屏幕可以全屏打开后,我了解到只需在网页的head内添加以下标签即可实现该功能:<metaname="apple-mobile-web-app-capa......
  • 转载自团队博客:基于深度学习的人脸识别会议签到系统
    电梯演讲:https://www.bilibili.com/video/BV1kc411W7w4?t=9.9原型:1,主界面  2,会议管理  3,人员管理  4,会议室管理......
  • 如何在一个月内搭建一个自己的博客网站
    目的和定位明确你想要做什么,目的是什么。有了明确的需求和目的,才有持续做下去的驱动力。做一个网站需要投入大量时间、金钱和精力,只投入,不产出,是有很大问题的,早晚会放弃。本站的目的:自媒体,分享思想,分享技术。提高个人(FansLei)和团体(FansUnion成员)知名度,帮助朋友、校友、网友......
  • 博客园主题美化配置(Awescnb)
    平时比较喜欢捣鼓主题,但是没办法见一个爱一个,或者有时候就一个主题用腻了,想尝试另一个主题,此处记录下是为了切换是更快的还原当初的配置,同时可以给广大网友提供参考~当前主题为awescnb系列主题中的geek主题 Awescnb文档Awescnb作者博客配置步骤一、准备工作申请js......
  • 续:python 新环境的创建并在 spyder 中转换 - 如何解决转换环境时报错:invalid file pat
    原文地址blog.csdn.net目录重点问题描述解决方法各种尝试最终灵感重点不想看全文的直接看这里,不要安装一个和已有python环境一样版本的python(这里的一样指的是完全一样,比如都是python2.7.15),如果已有python2.7.15,可以创建python2.7.18的环境并在spyder中转换。如......
  • python 新环境的创建并在 spyder 中转换——在 spyder 中配置 arcgis 的 python 解释
    原文地址blog.csdn.net目录问题描述创建python新环境查看所有环境创建新的python2.7虚拟环境激活环境删除环境在spyder中配置环境,切换python解释器回归正题,将指定路径下的python解释器配置到spyder中重点——解决方法问题描述这几天上课需要下载和学习a......