团队作业

所花时间:3小时

代码量:如下:

博客量:本学期截至目前24篇

了解到的知识点:app打卡

今天我和我的cp完成了地铁的线路查询和站点查询还有换乘 的查询,因为我们的页面还没有设计的特别好看。

一下是一小部分代码:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>主菜单</title>
</head>
<body>
<form action="#" method="get">
    <p style="text-align:center;font-size:20px" >
        <br>
        地铁查询
        <br>
        <input type="button" value="线路查询" onclick="location.href='searchLines.jsp'" />
        <input type="button" value="站点查询" onclick="location.href='searchStation.jsp'" />
        <input type="button" value="起终点换乘查询" onclick="location.href='searchChange.jsp'" />
<style>
    body{
        background-size:cover;
        background-image:url("/img/R-C.jpg");
    }
    </style>`
    <div style="text-align: center; width: 100px; font-size: 20px; color: #333;">©版权所有;王东帅 门殿宇</div>
    <br>
    </p>
</form>
</body>
</html>

  

<%--
  Created by IntelliJ IDEA.
  User: mendianyu
  Date: 2023/3/15
  Time: 19:21
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>起终点换乘查询</title>
</head>
<body>
<form action="searchChange_back.jsp" method="get">
    <p style="text-align:center;color: black; font-family: 宋体; font-size: 20px">
        <style>
            body{
                background-size:cover;
                background-image:url("/img/R-C.jpg");
            }
        </style>
        请输入起点站
        <input type="text" name="start">
        <br>
        请输入终点站
        <input type="text" name="end">
        <br>
        <input type="submit" value="查询">
        <br>
    <div style="text-align: center; width: 100px; font-size: 20px; color: #333;">©版权所有;王东帅 门殿宇</div>
    </p>
</form>
</body>
</html>

  

 

posted @ 2023-03-21 21:03  南北啊  阅读(24)  评论(0)    收藏  举报
1 2 3
4