首页 > 其他分享 >teacher_update

teacher_update

时间:2023-06-02 21:34:32浏览次数:35  
标签:color margin update text 20px font border teacher

<%--
  Created by IntelliJ IDEA.
  User: 绿波亭
  Date: 2023/5/29
  Time: 14:51
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html>
<head>
    <title> 教师功能页 </title>
    <style>
        body{
            background-color: #f2f2f2;
            font-family: Arial, sans-serif;
        }
        .container{
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 20px 0;
        }
        h1{
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
        }
        table{
            font-family: Arial, sans-serif;
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 20px;
        }
        td, th{
            border: 1px solid #ddd;
            text-align: center;
            padding: 8px;
        }
        th{
            background-color: #4caf50;
            color: white;
        }
        input[type="text"]{
            width: 100%;
            padding: 12px 20px;
            margin: 8px 0;
            display: inline-block;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        label{
            display: block;
            text-align: left;
            font-size: 18px;
            margin-bottom: 5px;
            color: #333;
        }
        input[type="submit"]{
            background-color: #4caf50;
            color: white;
            font-size: 18px;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        input[type="submit"]:hover{
            background-color: #37a047;
        }
    </style>
</head>
<body>

<div class="container">
    <h1> 教师功能页 </h1>
    <h2>考试成绩修改</h2>
    <table>
        <tr>
            <th>考试科目</th>
            <th>考试日期</th>
            <th>考试成绩</th>
            <th>操作</th>
        </tr>
        <tr>
            <td>语文</td>
            <td>2022-06-01</td>
            <td>80</td>
            <td><a href="#">修改</a></td>
        </tr>
        <tr>
            <td>数学</td>
            <td>2022-06-02</td>
            <td>90</td>
            <td><a href="#">修改</a></td>
        </tr>
        <tr>
            <td>物理</td>
            <td>2022-06-03</td>
            <td>85</td>
            <td><a href="#">修改</a></td>
        </tr>
    </table>


</div>
</body> </html>

 

标签:color,margin,update,text,20px,font,border,teacher
From: https://www.cnblogs.com/cocotun/p/17452922.html

相关文章

  • es 批量更新 _update_by_query
        {"script":{"source":"ctx._source['owner']=1610"},"query":{"term":{"categoryCId":{"value":807}}}} {"script":{"source":"ctx._source......
  • VMware ESXi 8.0 Update 1a macOS Unlocker & OEM BIOS (标准版和厂商定制版)
    VMwareESXi8.0Update1amacOSUnlocker&OEMBIOS(标准版和厂商定制版)ESXi8.0U1标准版,DellHPE联想浪潮定制版请访问原文链接:https://sysin.org/blog/vmware-esxi-8-u1-oem/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.orgESXi8.0U1a:此补丁修复了以下......
  • mysql 特有的 重复的主键 更新on duplicate key update
    insertintoharm_behavor_info(id,name,age,hobby,del_status)values(1,'xc','28','跑步',0)onduplicatekeyupdatedel_status=0,age=values(age),hobby=values(hobby)在向mysql中插入数据的时候,如果主键重复了,则执行更新语句。固定字段的值可以直接写,比......
  • docker apt-get update失败问题解决
    一、问题描述docker容器相当于linux系统的精简版,内部很多指令是无法直接使用的,例如vim指令,为了使用vim指令,我们需要进入容器内部进行安装,安装步骤为:apt-getupdateapt-getinstallvim很多时候我们发现安装会失败,这里是由于下载源问题。二、解决方案1.进入宿主机下cd/e......
  • VMware vSphere 8.0 Update 1a 正式版发布 - 企业级工作负载平台
    VMwarevSphere8.0Update1a正式版发布-企业级工作负载平台ESXi8.0U1&vCenterServer8.0U1请访问原文链接:https://sysin.org/blog/vmware-vsphere-8-u1/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.org2023-06-01,VMwarevSphere8.0U1a发布。ESXi8.0......
  • Spring boot 使用 jpa 动态插入@DynamicInsert和动态更新@DynamicUpdate(动态指部分或
    @DynamicInsert属性:设置为true,设置为true,表示insert对象的时候,生成动态的insert语句,如果这个字段的值是null就不会加入到insert语句当中.默认false。比如希望数据库插入日期或时间戳字段时,在对象字段为空的情况下,表字段能自动填写当前的sysdate。@DynamicUpdate属性:设置为tru......
  • 9. 子查询/INSERT/UPDATE/DELETE/REPLACE(未完成)
    一.子查询子查询就是指在一个select语句中嵌套另外一个select语句。同时子查询必须包含括号。MySQL5.6之前,子查询的性能较差,但是从5.6开始,不存在性能差的问题。selectafromt1wherea>any(selectafromt2);1.selectafromt1是外部查询(outerquery)2.(selectafro......
  • mysql中update会锁表吗
    MySQL中的update操作会不会锁表是一个值得关注的问题,因为这会影响到并发性能和系统的响应速度。本文将从两个方面探讨这个问题:一是有没有索引的情况下,二是MySQL开启了自动提交事务和手动提交事务的情况下。首先,在没有索引的情况下,MySQL的update操作会锁整个表。这是因为在......
  • mysql索引损坏,Record in index `log_time` of table `lts`.`lts_job_log_po` was not
    【1】错误信息[ERROR][MY-012869][InnoDB]Recordinindex`log_time`oftable`lts`.`lts_job_log_po`wasnotfoundonupdate:TUPLE(info_bits=0,2n_cmp=2,fields)2023-05-29T23:03:05.146242Z193[ERROR][MY-013183][InnoDB]Assertionfailure:row0upd.cc:......
  • 执行一条update会发生什么?
    1、和查询语句一样也会走一遍连接器、解析器、预处理器、优化器、执行器 2、执行器在更新数据前,会先查看bufferpool中是否存在要更新的数据,如果不存在则从磁盘加载到bufferpool,存在则进行修改 3、innodb把旧值写入undolog 4、innodb把新值写到bufferpool 5、innod......