首页 > 其他分享 >每日总结-23.5.29

每日总结-23.5.29

时间:2023-05-29 22:13:11浏览次数:42  
标签:总结 solid rgb 29 padding 23.5 tab font 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">
body {
 background-color: #F5DEB3 
}         
table {
    /*表格边框为实线或者是空心双线*/
    border-collapse: collapse;
    /*边框与边框的空间*/
    border-spacing: 0;
    padding: 40px ;
}

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 {
    width: 400px;
    height:300px;
    margin: 1em auto;
    padding-bottom: 10px;
    border-right: rgb(30,144,255) 2px solid;
    border-top: rgb(30,144,255) 2px solid;
    border-left: rgb(30,144,255) 2px solid;
    border-bottom: rgb(30,144,255) 2px solid;
    background: #ffffff;
}
/*tab头的样式*/
#tabsHead {
    padding-left: 0px;
    height: 26px;
    background-color: rgb(179, 247, 19);
    font-size: 1em;
    margin: 1px 0px 0px;
    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>
<body>
<h1 align="center">用 户 添 加</h1>
<br><br><br><br><br>
<form action="" method="get">
    <table cellspacing="10" id="tabDiv" border="0" style="display: block;font-size:18px;width:550px">

    <tr>
    <td align="center">姓名:<input type="text" name="name" size="20" placeholder="输入姓名"  style="font-size:18px"/></td>
        <td>
            <select name="identity" style="font-size:20px">
                <option value="" disable select hidden>请选择身份</option>
                <option value="student">学生</option>
                <option value="teacher">教师</option>
            </select>
        </td>
    </tr>
    <tr>
    <td align="center">专业:<input type="text" name="major" size="20" placeholder="输入专业"  style="font-size:18px"/></td>
        <td>
        <select name="class" style="font-size:20px">
            <option value="" disable select hidden>请选择班级</option>
            <%for(int i=1;i<=5;i++) {%>
                <option value="<%=i %>"><%out.print(i+"班"); %></option>
            <%} %>
        </select>
    </td>
    </tr>
    <tr>
    <td align="center">院系:<input type="text" name="faculty" size="20" placeholder="输入院系"  style="font-size:18px"/></td>
        <td>
        <select name="job_title" style="font-size:20px">
            <option value="" disable select hidden>职称(学生不选)</option>
            <option value="助教">助教</option>
            <option value="讲师">讲师</option>
            <option value="副教授">副教授</option>
            <option value="教授">教授</option>
        </select>
    </tr>
    <tr>
    <td align="center">手机:<input type="num" name="phone" size="20" placeholder="输入手机号"  style="font-size:18px" maxlength="11"/></td>
    </tr>

    <tr>
    <td align="center">性别:
    <input type = "radio" name = "sex" value="男">男
    <input type = "radio" name = "sex" value="女">女</td>
    </tr>
    
    <tr><td align="center" colspan="2"><input type="submit" value="插入" style="width:45px;height:30px;margin:5px 40px"/>
                                          <input type="reset" value="重置" style="width:45px;height:30px;margin:5px 40px"/>
    </td>
    </tr>
    
    </table>
    </form>
</body>
</html>

 

标签:总结,solid,rgb,29,padding,23.5,tab,font,border
From: https://www.cnblogs.com/laobing6214/p/17441806.html

相关文章

  • 软件工程期末总结
    本人为软件工程专业大二学生,现对一学期的学习过程进行总结。主要从如何学习javaweb和编写mis系统的具体流程入手。作为一名学习软件工程的学生,了解JavaWeb是非常重要的。以下是几个方面去学习JavaWeb的几个方面:Java基础知识:在开始学习JavaWeb之前,您需要先掌握Java的基本概......
  • 常用的排序算法总结
    常用的排序算法一、冒泡排序冒泡排序(BubbleSort),是一种较简单的排序算法。它重复地走访过要排序的元素列,依次比较两个相邻的元素,如果顺序(如从大到小、首字母从Z到A)错误就把他们交换过来。走访元素的工作是重复地进行直到没有相邻元素需要交换,也就是说该元素列已经排序完成。这......
  • 每日总结
    今天在课上建民老师给我们进行了测试,题目如下:     2021级《软件工程》开发技能测试试卷(180分钟) 河北宏志大学学生成绩管理系统(卷面成绩40分) 河北宏志大学学生成绩管理系统1、项目需求:学生管理是各大院校的管理工作中尤为重视的一项工作,它一直以来是学校管理的一......
  • AtCoder Beginner Contest 290(D,E)
    AtCoderBeginnerContest290(D,E)D(思维,数学)D这个题的大意就是我们需要标记\(n\)个位置,他是这样标记的,一开始有一个初始值为\(0\)的\(x\),第一个标记的是\(0\)位置,然后下一步,我们把\(x\)变成\((x+d)modn\),如果这个位置没有被标记,否则把\(x\)变成\((x+1)modn\),这个是没有......
  • 基于QT的空闲教室预约系统[2023-05-29]
    基于QT的空闲教室预约系统[2023-05-29][课程设计选题十]空闲教室预约系统课程设计内容利用QtCreater等工具和Linux环境下时间日期API实现一个基于图形界面的空闲教室预约系统,自行构建界面,可以实现选择日期、教学楼、教室座位数,查询相应空闲教室情况,录用申请信息,教室管理员......
  • CF1292 div.1 做题记录
    ACF题面若某一列的第\(i\)行禁止移动,那么看另一列的第\(i-1,i,i+1\)行是否存在禁止移动的格子,若存在为No,否则为Yes,这个只需要在改变一个点状态时判断即可。点击查看代码#include<bits/stdc++.h>#defineullunsignedlonglong#definelllonglong#definepiipair......
  • 5.29 数学模拟赛 1
    A.之前写过题解,不说了。B.N钱买N鸡,要求O(n)。思路还是和之前一样,但是提供一种新写法:#include<bits/stdc++.h>#definelllonglongusingnamespacestd;lln;intans[29]={1,0,0,0,1,0,0,1,1,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1};i......
  • Beta版总结会议
    我们在宿舍举行会议,该会议就不久前完成的教学管理系统1.0版展开讨论首先我提出了之前的系统好存在不少的问题,比如就数据安全性来说,没有进行数据的加密,也没有进行对访问是否合法的检验同时数据库没有进行事物管理,没有解决考虑并发问题,许多程序中的算法比较笨拙,局部需要进行优化,加......
  • 20230529 模拟赛订正
    A.xorontree在一棵\(n\)个点的树上,第\(i\)个点初始点权\(w_i\),有\(q\)次操作:0uv:\(v\tow_u\)1x:查询\(w_x\operatorname{xor}w_y\)的最大值,其中\(y\)是\(x\)的祖先(包括\(x\))\(n,q\le10^5\),TL=2s,ML=128MB.在考场上先是绞尽脑汁想到一个时间复杂度......
  • form表单特性总结
    1.form属性<formid="user_form"method="get"></form><div>年龄:<inputname="age"form="user_form"></></div>外部元素可以与非父级表单关联表单提交,可以携带表单外部元素的值2.提交按钮的form相关属性包括formaction:覆盖fo......